File: blowfish.h

package info (click to toggle)
scrollz 1.8m-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,616 kB
  • ctags: 4,000
  • sloc: ansic: 69,789; tcl: 2,866; sh: 503; makefile: 462
file content (18 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _blowfish_h_
#define _blowfish_h_

/*
 * Routines for Blowfish encryption
 *
 * $Id: blowfish.h,v 1.6 2000/10/24 18:53:20 f Exp $
 */

static unsigned int F _((unsigned int));
static void BlowfishEncipher _((unsigned int *, unsigned int *));
static void BlowfishDecipher _((unsigned int *, unsigned int *));
static void BlowfishInit _((char *, int, int));
int EncryptString _((char *, char *, char *, int, int));
int  Base64Decode _((char));
int DecryptString _((char *, char *, char *, int, int));

#endif /* _blowfish_h_ */