diff options
Diffstat (limited to 'modules/pam_pwdb')
-rw-r--r-- | modules/pam_pwdb/md5_broken.c | 4 | ||||
-rw-r--r-- | modules/pam_pwdb/md5_good.c | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/pam_pwdb/md5_broken.c b/modules/pam_pwdb/md5_broken.c new file mode 100644 index 00000000..193daebb --- /dev/null +++ b/modules/pam_pwdb/md5_broken.c @@ -0,0 +1,4 @@ +#define MD5Name(x) Broken##x + +#include "md5.c" +#include "md5_crypt.c" diff --git a/modules/pam_pwdb/md5_good.c b/modules/pam_pwdb/md5_good.c new file mode 100644 index 00000000..131e4516 --- /dev/null +++ b/modules/pam_pwdb/md5_good.c @@ -0,0 +1,5 @@ +#define HIGHFIRST +#define MD5Name(x) Good##x + +#include "md5.c" +#include "md5_crypt.c" |