HomeSort by: relevance | last modified time | path
    Searched refs:etm (Results 1 - 12 of 12) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
mac.h 39 int etm; /* Encrypt-then-MAC */ member in struct:sshmac
mac.c 55 int etm; /* Encrypt-then-MAC */ member in struct:macalg
70 { "hmac-sha1-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 1 },
71 { "hmac-sha1-96-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 1 },
72 { "hmac-sha2-256-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 1 },
73 { "hmac-sha2-512-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 1 },
74 { "hmac-md5-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_MD5, 0, 0, 0, 1 },
75 { "hmac-md5-96-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_MD5, 96, 0, 0, 1 },
76 { "umac-64-etm@openssh.com", SSH_UMAC, 0, 0, 128, 64, 1 },
77 { "umac-128-etm@openssh.com", SSH_UMAC128, 0, 0, 128, 128, 1 },
111 mac->etm = macalg->etm
    [all...]
packet.c 409 if (enc == NULL || !cipher_is_cbc(enc->cipher) || (mac && mac->etm)) {
1190 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
1226 len -= aadlen; /* packet length is not encrypted for EtM modes */
1274 if (mac && mac->enabled && !mac->etm) {
1291 if (mac->etm) {
1292 /* EtM: compute mac over aadlen + cipher text */
1296 DBG(debug("done calc MAC(EtM) out #%d",
1599 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
1682 /* EtM: check mac over encrypted input */
1683 if (mac && mac->enabled && mac->etm) {
    [all...]
  /src/crypto/external/bsd/openssl/dist/util/perl/TLSProxy/
Record.pm 16 my $etm = 0;
104 if (!TLSProxy::Proxy->is_tls13() && $etm) {
155 sub etm subroutine
159 $etm = shift;
161 return $etm;
ClientHello.pm 110 TLSProxy::Record->etm(0);
113 TLSProxy::Record->etm(1);
Message.pm 460 #Note: Only supports TLSv1.3 and ETM encryption
502 # Only support re-encryption for TLSv1.3 and ETM.
508 } elsif ($rec->etm()) {
528 die "Unsupported encryption: No ETM";
  /src/crypto/external/bsd/openssl.old/dist/util/perl/TLSProxy/
Record.pm 16 my $etm = 0;
104 if (!TLSProxy::Proxy->is_tls13() && $etm) {
155 sub etm subroutine
159 $etm = shift;
161 return $etm;
ClientHello.pm 110 TLSProxy::Record->etm(0);
113 TLSProxy::Record->etm(1);
Message.pm 451 #Note: Only supports TLSv1.3 and ETM encryption
493 # Only support re-encryption for TLSv1.3 and ETM.
499 } elsif ($rec->etm()) {
519 die "Unsupported encryption: No ETM";
  /src/crypto/external/apache2/openssl/dist/util/perl/TLSProxy/
Record.pm 16 my $etm = 0;
149 if (!TLSProxy::Proxy->is_tls13() && $etm) {
200 sub etm subroutine
204 $etm = shift;
206 return $etm;
ClientHello.pm 136 TLSProxy::Record->etm(0);
139 TLSProxy::Record->etm(1);
Message.pm 565 #Note: Only supports TLSv1.3 and ETM encryption
617 # Only support re-encryption for TLSv1.3 and ETM.
623 } elsif ($rec->etm()) {
643 die "Unsupported encryption: No ETM";

Completed in 32 milliseconds