1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include "ssh.h"
struct CipherState
{
BFstate enc;
BFstate dec;
};
static CipherState*
initblowfish(Conn *c, int)
{
CipherState *cs;
cs = emalloc(sizeof(CipherState));
setupBFstate(&cs->enc, c->sesskey, SESSKEYLEN, nil);
setupBFstate(&cs->dec, c->sesskey, SESSKEYLEN, nil);
return cs;
}
static void
encryptblowfish(CipherState *cs, uchar *buf, int nbuf)
{
bfCBCencrypt(buf, nbuf, &cs->enc);
}
static void
decryptblowfish(CipherState *cs, uchar *buf, int nbuf)
{
bfCBCdecrypt(buf, nbuf, &cs->dec);
}
Cipher cipherblowfish =
{
SSH_CIPHER_BLOWFISH,
"blowfish",
initblowfish,
encryptblowfish,
decryptblowfish,
};
|