File: blowfish.h

package info (click to toggle)
libcrypt-blowfish-perl 2.09-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 104 kB
  • ctags: 34
  • sloc: ansic: 392; perl: 239; makefile: 51
file content (6 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
#include <sys/types.h>

typedef unsigned char bf_cblock[8];

int blowfish_make_bfkey(char * key_string, int keylength, char * bfkey);
void blowfish_crypt_8bytes(bf_cblock source, bf_cblock dest, char * bfkey, short direction);