From adc93f6097615f16d57e8a24a256302f2144ec4e Mon Sep 17 00:00:00 2001 From: rsc Date: Fri, 14 Jan 2005 17:37:50 +0000 Subject: cut out the html - they're going to cause diffing problems. --- man/man3/blowfish.html | 95 -------------------------------------------------- 1 file changed, 95 deletions(-) delete mode 100644 man/man3/blowfish.html (limited to 'man/man3/blowfish.html') diff --git a/man/man3/blowfish.html b/man/man3/blowfish.html deleted file mode 100644 index d8da66de..00000000 --- a/man/man3/blowfish.html +++ /dev/null @@ -1,95 +0,0 @@ - -blowfish(3) - Plan 9 from User Space - - - - -
-
-
BLOWFISH(3)BLOWFISH(3) -
-
-

NAME
- -
- - setupBFstate, bfCBCencrypt, bfCBCdecrypt, bfECBencrypt, bfECBdecrypt - - blowfish encryption
- -
-

SYNOPSIS
- -
- - #include <u.h>
- #include <libc.h>
- #include <mp.h>
- #include <libsec.h> -
-
- void setupBFstate(BFstate *s, uchar key[], int keybytes,                  uchar - *ivec) -
-
- void bfCBCencrypt(uchar *data, int len, BFstate *s) -
-
- void bfCBCdecrypt(uchar *data, int len, BFstate *s) -
-
- void bfECBencrypt(uchar *data, int len, BFstate *s) -
-
- void bfECBdecrypt(uchar *data, int len, BFstate *s)
-
-
-

DESCRIPTION
- -
- - -
- - Blowfish is Bruce Schneier’s symmetric block cipher. It supports - variable length keys from 32 to 448 bits and has a block size - of 64 bits. Both CBC and ECB modes are supported. -
- - setupBFstate takes a BFstate structure, a key of at most 56 bytes, - the length of the key in bytes, and an initialization vector of - 8 bytes (set to all zeroes if argument is nil). The encryption - and decryption functions take a BFstate structure, a data buffer, - and a length, which must be a multiple of eight bytes as padding - is - currently unsupported.
- -
-

SOURCE
- -
- - /usr/local/plan9/src/libsec
-
-
-

SEE ALSO
- -
- - mp(3), aes(3), des(3), dsa(3), elgamal(3), rc4(3), rsa(3), sechash(3), - prime(3), rand(3)
- -
- -

-
-
- - -
-
-
-Space Glenda -
-
- - -- cgit v1.2.3