release 1.2.5
[musl.git] / src / crypt / crypt_des.h
blob96748b56307eedf7170b50fe5b495eb69d991070
1 #ifndef CRYPT_DES_H
2 #define CRYPT_DES_H
4 #include <stdint.h>
6 struct expanded_key {
7 uint32_t l[16], r[16];
8 };
10 hidden void __des_setkey(const unsigned char *, struct expanded_key *);
11 hidden void __do_des(uint32_t, uint32_t, uint32_t *, uint32_t *,
12 uint32_t, uint32_t, const struct expanded_key *);
14 #endif