mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
e0c2b91b3e
It never did anything and isn't worthwhile as documentation.
16 lines
367 B
C
16 lines
367 B
C
// clang-format off
|
|
#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
|