summaryrefslogtreecommitdiff
path: root/appl/cmd/ssh/ciphernone.b
blob: 01a7a1f37950bd458994bd63d99e11c2ec5f70f3 (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
implement Cipher;

include "sys.m";

include "ipints.m";
	ipints: IPints;
	IPint: import ipints;

include "crypt.m";

include "sshio.m";

id(): int
{
	return SSH_CIPHER_NONE;
}

init(nil: array of byte, nil: int)
{
}

encrypt(nil: array of byte, nil: int)
{
}

decrypt(nil: array of byte, nil: int)
{
}