summaryrefslogtreecommitdiff
path: root/sys/src/cmd/ssh/cipherdes.c
blob: 193d08242991c9d9125b5640983f0fabadeeb54c (plain)
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
{
	DESstate enc;
	DESstate dec;
};

static CipherState*
initdes(Conn *c, int)
{
	CipherState *cs;

	cs = emalloc(sizeof(CipherState));
	setupDESstate(&cs->enc, c->sesskey, nil);
	setupDESstate(&cs->dec, c->sesskey, nil);
	return cs;
}

static void
encryptdes(CipherState *cs, uchar *buf, int nbuf)
{
	desCBCencrypt(buf, nbuf, &cs->enc);
}

static void
decryptdes(CipherState *cs, uchar *buf, int nbuf)
{
	desCBCdecrypt(buf, nbuf, &cs->dec);
}

Cipher cipherdes =
{
	SSH_CIPHER_DES,
	"des",
	initdes,
	encryptdes,
	decryptdes,
};