mirror of https://git.musl-libc.org/git/musl
3 changed files with 16 additions and 12 deletions
@ -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 |
||||
Loading…
Reference in new issue