Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sshblowf.h')
-rw-r--r--sshblowf.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/sshblowf.h b/sshblowf.h
deleted file mode 100644
index a9efe3da..00000000
--- a/sshblowf.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * Header file shared between sshblowf.c and sshbcrypt.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);