|
Lines 87-92
Link Here
|
| 87 |
#ifdef USE_CIPHER_ACSS |
87 |
#ifdef USE_CIPHER_ACSS |
| 88 |
{ "acss@openssh.org", SSH_CIPHER_SSH2, 16, 5, 0, EVP_acss }, |
88 |
{ "acss@openssh.org", SSH_CIPHER_SSH2, 16, 5, 0, EVP_acss }, |
| 89 |
#endif |
89 |
#endif |
|
|
90 |
#ifdef USE_CIPHER_CAMELLIA |
| 91 |
{ "camellia128-cbc@openssh.org", SSH_CIPHER_SSH2, 16, 16, 0, EVP_camellia_128_cbc }, |
| 92 |
{ "camellia192-cbc@openssh.org", SSH_CIPHER_SSH2, 16, 24, 0, EVP_camellia_192_cbc }, |
| 93 |
{ "camellia256-cbc@openssh.org", SSH_CIPHER_SSH2, 16, 32, 0, EVP_camellia_256_cbc }, |
| 94 |
#endif |
| 90 |
{ NULL, SSH_CIPHER_INVALID, 0, 0, 0, NULL } |
95 |
{ NULL, SSH_CIPHER_INVALID, 0, 0, 0, NULL } |
| 91 |
}; |
96 |
}; |
| 92 |
|
97 |
|