diff options
| author | forsyth <forsyth@vitanuova.com> | 2011-01-17 10:45:22 +0000 |
|---|---|---|
| committer | forsyth <forsyth@vitanuova.com> | 2011-01-17 10:45:22 +0000 |
| commit | 9e6910dc0c747c8f30b87f6482f4eadb48ad6654 (patch) | |
| tree | 4f835b35913acfb115b15ea4f1c6af40fd77ab54 /appl/cmd/ssh/ciphernone.b | |
| parent | 16501eaf1cb642b80d7fa0236407a27aecb35b02 (diff) | |
emu/Nt/ipif.c
Diffstat (limited to 'appl/cmd/ssh/ciphernone.b')
| -rw-r--r-- | appl/cmd/ssh/ciphernone.b | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/appl/cmd/ssh/ciphernone.b b/appl/cmd/ssh/ciphernone.b new file mode 100644 index 00000000..01a7a1f3 --- /dev/null +++ b/appl/cmd/ssh/ciphernone.b @@ -0,0 +1,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) +{ +} |
