mirror of
https://github.com/ziglang/zig.git
synced 2026-02-10 19:41:16 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
15 lines
328 B
C
15 lines
328 B
C
#ifndef CRYPT_DES_H
|
|
#define CRYPT_DES_H
|
|
|
|
#include <stdint.h>
|
|
|
|
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
|