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

include "sys.m";

include "keyring.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)
{
}