diff options
| author | Charles.Forsyth <devnull@localhost> | 2009-03-30 08:58:09 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2009-03-30 08:58:09 +0000 |
| commit | 9e85ae9b75acdbe245243784d8d5b1b4de1b24f9 (patch) | |
| tree | 5dfaf8c8881bbf352dab7338cc9fba000c24eb03 /appl/cmd/ssh/ciphernone.b | |
| parent | 77bf0d6355c02a5d5199dd37033066727cad375b (diff) | |
x20090330-0957
Diffstat (limited to 'appl/cmd/ssh/ciphernone.b')
| -rw-r--r-- | appl/cmd/ssh/ciphernone.b | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/appl/cmd/ssh/ciphernone.b b/appl/cmd/ssh/ciphernone.b new file mode 100644 index 00000000..f4aed718 --- /dev/null +++ b/appl/cmd/ssh/ciphernone.b @@ -0,0 +1,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) +{ +} |
