Home
last modified time | relevance | path

Searched refs:decrypt_len (Results 1 – 7 of 7) sorted by relevance

/freebsd/crypto/openssl/util/perl/TLSProxy/
H A DRecord.pm173 $decrypt_len,
184 decrypt_len => $decrypt_len,
218 $self->decrypt_len(length($data));
267 $self->decrypt_len(length($data));
325 sub decrypt_len subroutine
329 $self->{decrypt_len} = shift;
331 return $self->{decrypt_len};
H A DMessage.pm209 if (length($payload) + $record->decrypt_len >= $messlen) {
222 $recoffset = $record->decrypt_len;
223 push @message_frag_lens, $record->decrypt_len;
228 while ($record->decrypt_len > $recoffset) {
230 if ($record->decrypt_len - $recoffset < 4) {
247 if ($recoffset <= $record->decrypt_len) {
249 if ($record->decrypt_len - $recoffset >= $messlen) {
263 $record->decrypt_len - $recoffset);
264 $recoffset = $record->decrypt_len;
501 $rec->decrypt_len(length($rec->decrypt_data));
H A DProxy.pm471 my $decrypt_len;
/freebsd/crypto/openssl/crypto/rsa/
H A Drsa_sign.c336 size_t decrypt_len, encoded_len = 0; in ossl_rsa_verify() local
355 decrypt_len = len; in ossl_rsa_verify()
364 if (decrypt_len != SSL_SIG_LENGTH) { in ossl_rsa_verify()
383 } else if (type == NID_mdc2 && decrypt_len == 2 + 16 in ossl_rsa_verify()
417 if (m_len > decrypt_len) { in ossl_rsa_verify()
421 m = decrypt_buf + decrypt_len - m_len; in ossl_rsa_verify()
428 if (encoded_len != decrypt_len in ossl_rsa_verify()
/freebsd/contrib/wpa/src/eap_server/
H A Deap_server_eke.c521 size_t decrypt_len; in eap_eke_process_commit() local
563 decrypt_len = sizeof(data->nonce_p); in eap_eke_process_commit()
565 data->nonce_p, &decrypt_len) < 0) { in eap_eke_process_commit()
570 if (decrypt_len < (size_t) data->sess.nonce_len) { in eap_eke_process_commit()
593 size_t decrypt_len; in eap_eke_process_confirm() local
612 decrypt_len = sizeof(nonce); in eap_eke_process_confirm()
614 nonce, &decrypt_len) < 0) { in eap_eke_process_confirm()
619 if (decrypt_len < (size_t) data->sess.nonce_len) { in eap_eke_process_confirm()
/freebsd/contrib/wpa/src/eap_peer/
H A Deap_eke.c510 size_t decrypt_len; in eap_eke_process_confirm() local
532 decrypt_len = sizeof(nonces); in eap_eke_process_confirm()
534 nonces, &decrypt_len) < 0) { in eap_eke_process_confirm()
539 if (decrypt_len != (size_t) 2 * data->sess.nonce_len) { in eap_eke_process_confirm()
/freebsd/crypto/openssl/test/recipes/
H A D70-test_tls13hrr.t146 $hrr_record->decrypt_len(),