mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
15 lines
347 B
C
15 lines
347 B
C
#ifndef CRYPT_DES_H
|
|
#define CRYPT_DES_H
|
|
|
|
#include "libc/limits.h"
|
|
#include "libc/literal.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
|