mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 01:18:00 +00:00
5935c68288
Correcting a source file name in the docs just now reminded me that I've seen a lot of outdated source file names elsewhere in the code, due to all the reorganisation since we moved to cmake. Here's a giant pass of trying to make them all accurate again.
15 lines
549 B
C
15 lines
549 B
C
/*
|
|
* Header file shared between blowfish.c and bcrypt.c. Exposes the
|
|
* internal Blowfish routines needed by bcrypt.
|
|
*/
|
|
|
|
typedef struct BlowfishContext BlowfishContext;
|
|
|
|
BlowfishContext *blowfish_make_context(void);
|
|
void blowfish_free_context(BlowfishContext *ctx);
|
|
void blowfish_initkey(BlowfishContext *ctx);
|
|
void blowfish_expandkey(BlowfishContext *ctx,
|
|
const void *key, short keybytes,
|
|
const void *salt, short saltbytes);
|
|
void blowfish_lsb_encrypt_ecb(void *blk, int len, BlowfishContext *ctx);
|