Searched refs:encrypt_len (Results 1 – 4 of 4) sorted by relevance
/third_party/openssl/crypto/rsa/ |
D | rsa_sign.c | 276 int encrypt_len, ret = 0; in RSA_sign() local 309 encrypt_len = RSA_private_encrypt((int)encoded_len, encoded, sigret, rsa, in RSA_sign() 311 if (encrypt_len <= 0) in RSA_sign() 314 *siglen = encrypt_len; in RSA_sign()
|
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
D | rsa_sign.c | 276 int encrypt_len, ret = 0; in RSA_sign() local 309 encrypt_len = RSA_private_encrypt((int)encoded_len, encoded, sigret, rsa, in RSA_sign() 311 if (encrypt_len <= 0) in RSA_sign() 314 *siglen = encrypt_len; in RSA_sign()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
D | encrypt.rs | 241 pub fn encrypt_len(&self, from: &[u8]) -> Result<usize, ErrorStack> { in encrypt_len() method 500 let buffer_len = encrypter.encrypt_len(&input).unwrap(); in rsa_encrypt_decrypt() 529 let buffer_len = encrypter.encrypt_len(&input).unwrap(); in rsa_encrypt_decrypt_with_sha256() 557 let buffer_len = encrypter.encrypt_len(&input).unwrap(); in rsa_encrypt_decrypt_oaep_label()
|
/third_party/libcoap/src/ |
D | coap_oscore.c | 789 size_t encrypt_len; in coap_oscore_decrypt_pdu() local 1275 encrypt_len = pdu->used_size - (pdu->data - pdu->token); in coap_oscore_decrypt_pdu() 1276 if (encrypt_len <= 0) { in coap_oscore_decrypt_pdu() 1285 cose_encrypt0_set_ciphertext(cose, st_encrypt, encrypt_len); in coap_oscore_decrypt_pdu() 1289 plain_pdu = coap_pdu_init(0, 0, 0, encrypt_len /* - tag_len */); in coap_oscore_decrypt_pdu() 1299 if (!coap_pdu_resize(plain_pdu, encrypt_len /* - tag_len */)) { in coap_oscore_decrypt_pdu() 1311 plain_pdu->used_size = encrypt_len - tag_len; in coap_oscore_decrypt_pdu() 1315 cose_encrypt0_decrypt(cose, plain_pdu->token, encrypt_len - tag_len); in coap_oscore_decrypt_pdu()
|