diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-10 20:42:35 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:33 -0400 |
commit | 7ab1578d05f5d6790e218867158a28d9147419ec (patch) | |
tree | b93b0b8e110e6f2c1f67632d5e28fca969c06df5 /src/crypt/encrypt.c | |
parent | 4de46b5ab51fd74552fa58a6721c78e10c9de975 (diff) | |
download | musl-7ab1578d05f5d6790e218867158a28d9147419ec.tar.gz musl-7ab1578d05f5d6790e218867158a28d9147419ec.tar.xz musl-7ab1578d05f5d6790e218867158a28d9147419ec.zip |
add crypt_des header for declarations shared with encrypt function
Diffstat (limited to 'src/crypt/encrypt.c')
-rw-r--r-- | src/crypt/encrypt.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/crypt/encrypt.c b/src/crypt/encrypt.c index 9332a6de..216abc91 100644 --- a/src/crypt/encrypt.c +++ b/src/crypt/encrypt.c @@ -2,15 +2,7 @@ #include <stdlib.h> #include <unistd.h> -struct expanded_key { - uint32_t l[16], r[16]; -}; - -void __des_setkey(const unsigned char *key, struct expanded_key *ekey); -void __do_des(uint32_t l_in, uint32_t r_in, - uint32_t *l_out, uint32_t *r_out, - uint32_t count, uint32_t saltbits, const struct expanded_key *ekey); - +#include "crypt_des.h" static struct expanded_key __encrypt_key; |