Searched refs:decrypted (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/cmd/ssh/libssh/common/ |
H A D | authfile.c | 318 Buffer buffer, decrypted; in key_load_private_rsa1() local 381 buffer_init(&decrypted); in key_load_private_rsa1() 382 cp = buffer_append_space(&decrypted, buffer_len(&buffer)); in key_load_private_rsa1() 393 check1 = buffer_get_char(&decrypted); in key_load_private_rsa1() 394 check2 = buffer_get_char(&decrypted); in key_load_private_rsa1() 395 if (check1 != buffer_get_char(&decrypted) || in key_load_private_rsa1() 396 check2 != buffer_get_char(&decrypted)) { in key_load_private_rsa1() 401 buffer_free(&decrypted); in key_load_private_rsa1() 405 buffer_get_bignum(&decrypted, prv->rsa->d); in key_load_private_rsa1() 406 buffer_get_bignum(&decrypted, prv->rsa->iqmp); /* u */ in key_load_private_rsa1() [all …]
|
H A D | ssh-rsa.c | 219 u_char *decrypted = NULL; in openssh_RSA_verify() local 246 decrypted = xmalloc(rsasize); in openssh_RSA_verify() 247 if ((len = RSA_public_decrypt(siglen, sigbuf, decrypted, rsa, in openssh_RSA_verify() 257 if (memcmp(decrypted, oid, oidlen) != 0) { in openssh_RSA_verify() 261 if (memcmp(decrypted + oidlen, hash, hlen) != 0) { in openssh_RSA_verify() 267 if (decrypted) in openssh_RSA_verify() 268 xfree(decrypted); in openssh_RSA_verify()
|
/titanic_50/usr/src/uts/common/crypto/io/ |
H A D | dprov.c | 6602 uint_t decrypted; in dprov_cipher_mac_task() local 6636 decrypted = cipher_data.cd_length; in dprov_cipher_mac_task() 6638 decrypted = in dprov_cipher_mac_task() 6640 plaintext_tmp.cd_offset += decrypted; in dprov_cipher_mac_task() 6641 plaintext_tmp.cd_length -= decrypted; in dprov_cipher_mac_task()
|
/titanic_50/usr/src/lib/libsqlite/src/ |
H A D | sqlite.h.in | 823 ** database is decrypted.
|