From 4abab5ad6c8465a7528ccdd5f49367da05f78bbd Mon Sep 17 00:00:00 2001 From: Vladimir Azarov Date: Tue, 1 Oct 2024 15:47:05 +0200 Subject: Initial version --- src/crypt/crypt_des.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/crypt/crypt_des.h (limited to 'src/crypt/crypt_des.h') diff --git a/src/crypt/crypt_des.h b/src/crypt/crypt_des.h new file mode 100644 index 0000000..96748b5 --- /dev/null +++ b/src/crypt/crypt_des.h @@ -0,0 +1,14 @@ +#ifndef CRYPT_DES_H +#define CRYPT_DES_H + +#include + +struct expanded_key { + uint32_t l[16], r[16]; +}; + +hidden void __des_setkey(const unsigned char *, struct expanded_key *); +hidden void __do_des(uint32_t, uint32_t, uint32_t *, uint32_t *, + uint32_t, uint32_t, const struct expanded_key *); + +#endif -- cgit v1.2.3