HomeSort by relevance Sort by last modified time
    Searched refs:cmac (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
ccm128.c 112 (*block)(ctx->nonce.c,ctx->cmac.c,ctx->key),
116 ctx->cmac.c[0] ^= (u8)(alen>>8);
117 ctx->cmac.c[1] ^= (u8)alen;
121 ctx->cmac.c[0] ^= 0xFF;
122 ctx->cmac.c[1] ^= 0xFF;
123 ctx->cmac.c[2] ^= (u8)(alen>>(56%(sizeof(alen)*8)));
124 ctx->cmac.c[3] ^= (u8)(alen>>(48%(sizeof(alen)*8)));
125 ctx->cmac.c[4] ^= (u8)(alen>>(40%(sizeof(alen)*8)));
126 ctx->cmac.c[5] ^= (u8)(alen>>(32%(sizeof(alen)*8)));
127 ctx->cmac.c[6] ^= (u8)(alen>>24)
    [all...]
modes_lcl.h 126 union { u64 u[2]; u8 c[16]; } nonce, cmac; member in struct:ccm128_context
  /external/openssl/crypto/modes/
ccm128.c 112 (*block)(ctx->nonce.c,ctx->cmac.c,ctx->key),
116 ctx->cmac.c[0] ^= (u8)(alen>>8);
117 ctx->cmac.c[1] ^= (u8)alen;
121 ctx->cmac.c[0] ^= 0xFF;
122 ctx->cmac.c[1] ^= 0xFF;
123 ctx->cmac.c[2] ^= (u8)(alen>>(56%(sizeof(alen)*8)));
124 ctx->cmac.c[3] ^= (u8)(alen>>(48%(sizeof(alen)*8)));
125 ctx->cmac.c[4] ^= (u8)(alen>>(40%(sizeof(alen)*8)));
126 ctx->cmac.c[5] ^= (u8)(alen>>(32%(sizeof(alen)*8)));
127 ctx->cmac.c[6] ^= (u8)(alen>>24)
    [all...]
modes_lcl.h 123 union { u64 u[2]; u8 c[16]; } nonce, cmac; member in struct:ccm128_context
  /external/chromium_org/third_party/openssl/openssl/crypto/cmac/
cm_ameth.c 56 #include <openssl/cmac.h>
59 /* CMAC "ASN1" method. This is just here to indicate the
60 * maximum CMAC output length and to free up a CMAC
82 "CMAC",
83 "OpenSSL CMAC method",
cm_pmeth.c 58 #include <openssl/cmac.h>
cmac.c 1 /* crypto/cmac/cmac.c */
58 #include <openssl/cmac.h>
305 * CMAC to continue after calling CMAC_Final().
  /external/openssl/crypto/cmac/
cm_ameth.c 56 #include <openssl/cmac.h>
59 /* CMAC "ASN1" method. This is just here to indicate the
60 * maximum CMAC output length and to free up a CMAC
82 "CMAC",
83 "OpenSSL CMAC method",
cm_pmeth.c 58 #include <openssl/cmac.h>
cmac.c 1 /* crypto/cmac/cmac.c */
58 #include <openssl/cmac.h>
305 * CMAC to continue after calling CMAC_Final().
  /external/openssl/
Crypto-config-trusty.mk 81 crypto/cmac/cm_ameth.c \
82 crypto/cmac/cm_pmeth.c \
83 crypto/cmac/cmac.c \
Crypto-config-host.mk 160 crypto/cmac/cm_ameth.c \
161 crypto/cmac/cm_pmeth.c \
162 crypto/cmac/cmac.c \
Crypto-config-target.mk 160 crypto/cmac/cm_ameth.c \
161 crypto/cmac/cm_pmeth.c \
162 crypto/cmac/cmac.c \
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/asm/
aesni-x86.pl 580 # const char *ivec,char *cmac);
583 # does not update *ivec! Nor does it finalize CMAC value
586 { my $cmac=$inout1;
600 &movdqu ($cmac,&QWP(0,$rounds)); # load cmac
633 &xorps ($cmac,$rndkey0); # cmac^=inp
639 &aesenc ($cmac,$rndkey1);
643 &aesenc ($cmac,$rndkey0);
647 &aesenc ($cmac,$rndkey1)
    [all...]
  /external/openssl/crypto/aes/asm/
aesni-x86.pl 580 # const char *ivec,char *cmac);
583 # does not update *ivec! Nor does it finalize CMAC value
586 { my $cmac=$inout1;
600 &movdqu ($cmac,&QWP(0,$rounds)); # load cmac
633 &xorps ($cmac,$rndkey0); # cmac^=inp
639 &aesenc ($cmac,$rndkey1);
643 &aesenc ($cmac,$rndkey0);
647 &aesenc ($cmac,$rndkey1)
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast.c 755 u8 cmk[EAP_FAST_CMK_LEN], cmac[SHA1_MAC_LEN]; local
766 os_memcpy(cmac, _bind->compound_mac, sizeof(cmac));
767 os_memset(_bind->compound_mac, 0, sizeof(cmac));
772 res = os_memcmp_const(cmac, _bind->compound_mac, sizeof(cmac));
774 cmac, sizeof(cmac));
776 _bind->compound_mac, sizeof(cmac));
779 os_memcpy(_bind->compound_mac, cmac, sizeof(cmac))
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_fast.c 1177 u8 cmac[SHA1_MAC_LEN]; local
1209 os_memcpy(cmac, b->compound_mac, sizeof(cmac));
1210 os_memset(b->compound_mac, 0, sizeof(cmac));
1216 if (os_memcmp_const(cmac, b->compound_mac, sizeof(cmac)) != 0) {
1219 b->compound_mac, sizeof(cmac));
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
modes.h 24 const unsigned char ivec[16],unsigned char cmac[16]);
  /external/openssl/include/openssl/
modes.h 24 const unsigned char ivec[16],unsigned char cmac[16]);
  /external/chromium_org/third_party/openssl/openssl/
Crypto-config.mk 172 crypto/cmac/cm_ameth.c \
173 crypto/cmac/cm_pmeth.c \
174 crypto/cmac/cmac.c \
  /external/chromium_org/third_party/openssl/
openssl.target.darwin-arm.mk 176 third_party/openssl/openssl/crypto/cmac/cm_ameth.c \
177 third_party/openssl/openssl/crypto/cmac/cm_pmeth.c \
178 third_party/openssl/openssl/crypto/cmac/cmac.c \
    [all...]
openssl.target.darwin-arm64.mk 177 third_party/openssl/openssl/crypto/cmac/cm_ameth.c \
178 third_party/openssl/openssl/crypto/cmac/cm_pmeth.c \
179 third_party/openssl/openssl/crypto/cmac/cmac.c \
    [all...]
openssl.target.darwin-mips.mk 175 third_party/openssl/openssl/crypto/cmac/cm_ameth.c \
176 third_party/openssl/openssl/crypto/cmac/cm_pmeth.c \
177 third_party/openssl/openssl/crypto/cmac/cmac.c \
    [all...]
openssl.target.darwin-x86.mk 172 third_party/openssl/openssl/crypto/cmac/cm_ameth.c \
173 third_party/openssl/openssl/crypto/cmac/cm_pmeth.c \
174 third_party/openssl/openssl/crypto/cmac/cmac.c \
    [all...]
openssl.target.darwin-x86_64.mk 172 third_party/openssl/openssl/crypto/cmac/cm_ameth.c \
173 third_party/openssl/openssl/crypto/cmac/cm_pmeth.c \
174 third_party/openssl/openssl/crypto/cmac/cmac.c \
    [all...]

Completed in 696 milliseconds

1 2