summaryrefslogtreecommitdiff
path: root/src/crypt/crypt_des.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-10 20:42:35 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:33 -0400
commit7ab1578d05f5d6790e218867158a28d9147419ec (patch)
treeb93b0b8e110e6f2c1f67632d5e28fca969c06df5 /src/crypt/crypt_des.h
parent4de46b5ab51fd74552fa58a6721c78e10c9de975 (diff)
downloadmusl-7ab1578d05f5d6790e218867158a28d9147419ec.tar.gz
add crypt_des header for declarations shared with encrypt function
Diffstat (limited to 'src/crypt/crypt_des.h')
-rw-r--r--src/crypt/crypt_des.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/crypt/crypt_des.h b/src/crypt/crypt_des.h
new file mode 100644
index 00000000..8ccbf8be
--- /dev/null
+++ b/src/crypt/crypt_des.h
@@ -0,0 +1,14 @@
+#ifndef CRYPT_DES_H
+#define CRYPT_DES_H
+
+#include <stdint.h>
+
+struct expanded_key {
+ uint32_t l[16], r[16];
+};
+
+void __des_setkey(const unsigned char *, struct expanded_key *);
+void __do_des(uint32_t, uint32_t, uint32_t *, uint32_t *,
+ uint32_t, uint32_t, const struct expanded_key *);
+
+#endif