cosmopolitan/third_party/musl/crypt_des.internal.h
2022-11-08 12:55:28 -08:00

16 lines
377 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];
};
_Hide void __des_setkey(const unsigned char *, struct expanded_key *);
_Hide void __do_des(uint32_t, uint32_t, uint32_t *, uint32_t *,
uint32_t, uint32_t, const struct expanded_key *);
#endif