1 #include "config.h"
2 
3 #define LIBSSH_STATIC
4 
5 #include "torture.h"
6 #include "libssh/crypto.h"
7 
8 uint8_t key[32] =
9     "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e"
10     "\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d"
11     "\x1e\x1f";
12 
13 uint8_t IV[16] =
14     "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e"
15     "\x1f";
16 
17 uint8_t cleartext[144] =
18     "\xb4\xfc\x5d\xc2\x49\x8d\x2c\x29\x4a\xc9\x9a\xb0\x1b\xf8\x29"
19     "\xee\x85\x6d\x8c\x04\x34\x7c\x65\xf4\x89\x97\xc5\x71\x70\x41"
20     "\x91\x40\x19\x60\xe1\xf1\x8f\x4d\x8c\x17\x51\xd6\xbc\x69\x6e"
21     "\xf2\x21\x87\x18\x6c\xef\xc4\xf4\xd9\xe6\x1b\x94\xf7\xd8\xb2"
22     "\xe9\x24\xb9\xe7\xe6\x19\xf5\xec\x55\x80\x9a\xc8\x7d\x70\xa3"
23     "\x50\xf8\x03\x10\x35\x49\x9b\x53\x58\xd7\x4c\xfc\x5f\x02\xd6"
24     "\x28\xea\xcc\x43\xee\x5e\x2b\x8a\x7a\x66\xf7\x00\xee\x09\x18"
25     "\x30\x1b\x47\xa2\x16\x69\xc4\x6e\x44\x3f\xbd\xec\x52\xce\xe5"
26     "\x41\xf2\xe0\x04\x4f\x5a\x55\x58\x37\xba\x45\x8d\x15\x53\xf6"
27     "\x31\x91\x13\x8c\x51\xed\x08\x07\xdb";
28 
29 uint8_t aes256_cbc_encrypted[144] =
30     "\x7f\x1b\x92\xac\xc5\x16\x05\x55\x74\xac\xb4\xe0\x91\x8c\xf8"
31     "\x0d\xa9\x72\xa5\x09\xb8\x44\xee\x55\x02\x13\xb7\x52\x0a\xf0"
32     "\xac\xd0\x21\x0e\x58\x7b\x34\xfe\xdb\x36\x01\x60\x7d\x18\x3a"
33     "\xa9\x15\x18\x5b\x13\xca\xdd\x77\x7d\xdf\x64\xc6\xd5\x75\x4b"
34     "\x02\x02\x37\xb1\xf4\x33\xff\x93\xe6\x32\x08\xda\xcb\x5d\xa2"
35     "\x8f\x17\x1f\x99\x92\x60\x22\x9d\x6b\xe6\xb2\x5e\xb0\x5d\x26"
36     "\x3f\xde\xb8\xc1\xb0\x70\x80\x1c\x00\xd0\x93\x2b\xeb\x0f\xd7"
37     "\x70\x7a\x9a\x7a\xa6\x21\x23\x2c\x02\xb7\xcd\x88\x10\x9c\x2d"
38     "\x0c\xd3\xfa\xc1\x33\x5b\xe1\xa1\xd4\x3d\x8f\xb8\x50\xc5\xb5"
39     "\x72\xdd\x6d\x32\x1f\x58\x00\x48\xbe";
40 
get_cipher(struct ssh_cipher_struct * cipher,const char * ciphername)41 static int get_cipher(struct ssh_cipher_struct *cipher, const char *ciphername)
42 {
43     struct ssh_cipher_struct *ciphers = ssh_get_ciphertab();
44     size_t i;
45     int cmp;
46 
47     assert_non_null(cipher);
48 
49     for (i = 0; ciphers[i].name != NULL; i++) {
50         cmp = strcmp(ciphername, ciphers[i].name);
51         if (cmp == 0){
52             memcpy(cipher, &ciphers[i], sizeof(*cipher));
53             return SSH_OK;
54         }
55     }
56 
57     return SSH_ERROR;
58 }
59 
torture_crypto_aes256_cbc(void ** state)60 static void torture_crypto_aes256_cbc(void **state)
61 {
62     uint8_t output[sizeof(cleartext)] = {0};
63     uint8_t iv[16] = {0};
64     struct ssh_cipher_struct cipher = {0};
65     int rc;
66     (void)state;
67 
68     rc = get_cipher(&cipher, "aes256-cbc");
69     assert_int_equal(rc, SSH_OK);
70 
71     assert_non_null(cipher.set_encrypt_key);
72     assert_non_null(cipher.encrypt);
73 
74     memcpy(iv, IV, sizeof(IV));
75     cipher.set_encrypt_key(&cipher,
76             key,
77             iv
78     );
79 
80     cipher.encrypt(&cipher,
81             cleartext,
82             output,
83             sizeof(cleartext)
84             );
85 
86     assert_memory_equal(output, aes256_cbc_encrypted, sizeof(aes256_cbc_encrypted));
87     ssh_cipher_clear(&cipher);
88 
89     rc = get_cipher(&cipher, "aes256-cbc");
90     assert_int_equal(rc, SSH_OK);
91 
92     assert_non_null(cipher.set_decrypt_key);
93     assert_non_null(cipher.decrypt);
94 
95     memcpy(iv, IV, sizeof(IV));
96     cipher.set_decrypt_key(&cipher,
97             key,
98             iv
99     );
100 
101     memset(output, '\0', sizeof(output));
102     cipher.decrypt(&cipher,
103             aes256_cbc_encrypted,
104             output,
105             sizeof(aes256_cbc_encrypted)
106             );
107 
108     assert_memory_equal(output, cleartext, sizeof(cleartext));
109 
110     ssh_cipher_clear(&cipher);
111 }
112 
torture_run_tests(void)113 int torture_run_tests(void) {
114     int rc;
115     const struct CMUnitTest tests[] = {
116         cmocka_unit_test(torture_crypto_aes256_cbc),
117     };
118 
119     ssh_init();
120     rc = cmocka_run_group_tests(tests, NULL, NULL);
121     ssh_finalize();
122     return rc;
123 }
124