Home
last modified time | relevance | path

Searched refs:ghash (Results 1 – 24 of 24) sorted by relevance

/freebsd-14-stable/crypto/openssl/crypto/modes/
HDbuild.info5 $MODESASM_x86=ghash-x86.S
7 $MODESASM_x86_64=ghash-x86_64.s aesni-gcm-x86_64.s
10 # ghash-ia64.s doesn't work on VMS
12 $MODESASM_ia64=ghash-ia64.s
16 $MODESASM_sparcv9=ghash-sparcv9.S
19 $MODESASM_alpha=ghash-alpha.S
22 $MODESASM_s390x=ghash-s390x.S
25 $MODESASM_armv4=ghash-armv4.S ghashv8-armx.S
30 $MODESASM_parisc11=ghash-parisc.s
40 $MODESASM_c64xplus=ghash-c64xplus.s
[all …]
HDgcm128.c732 # define CTX__GHASH(f) (ctx->ghash = (f))
734 # define CTX__GHASH(f) (ctx->ghash = NULL)
915 const u8 *inp, size_t len) = ctx->ghash;
980 const u8 *inp, size_t len) = ctx->ghash;
1212 const u8 *inp, size_t len) = ctx->ghash;
1454 const u8 *inp, size_t len) = ctx->ghash;
1615 const u8 *inp, size_t len) = ctx->ghash;
1777 const u8 *inp, size_t len) = ctx->ghash;
/freebsd-14-stable/sys/contrib/openzfs/module/icp/algs/modes/
HDgcm.c221 uint8_t *ghash, *macp = NULL; in gcm_encrypt_final() local
230 ghash = (uint8_t *)ctx->gcm_ghash; in gcm_encrypt_final()
262 GHASH(ctx, macp, ghash, gops); in gcm_encrypt_final()
269 GHASH(ctx, ctx->gcm_len_a_len_c, ghash, gops); in gcm_encrypt_final()
272 xor_block((uint8_t *)ctx->gcm_J0, ghash); in gcm_encrypt_final()
281 rv = crypto_put_output_data(ghash, out, ctx->gcm_tag_len); in gcm_encrypt_final()
388 uint8_t *ghash; in gcm_decrypt_final() local
399 ghash = (uint8_t *)ctx->gcm_ghash; in gcm_decrypt_final()
417 GHASH(ctx, blockp, ghash, gops); in gcm_decrypt_final()
440 GHASH(ctx, ctx->gcm_len_a_len_c, ghash, gops); in gcm_decrypt_final()
[all …]
/freebsd-14-stable/contrib/wpa/src/crypto/
HDaes-gcm.c103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y) in ghash() function
207 ghash(H, iv, iv_len, J0); in aes_gcm_prepare_j0()
210 ghash(H, len_buf, sizeof(len_buf), J0); in aes_gcm_prepare_j0()
241 ghash(H, aad, aad_len, S); in aes_gcm_ghash()
242 ghash(H, crypt, crypt_len, S); in aes_gcm_ghash()
245 ghash(H, len_buf, sizeof(len_buf), S); in aes_gcm_ghash()
/freebsd-14-stable/sys/modules/ossl/
HDMakefile23 ghash-armv4.S \
45 ghash-x86_64.S \
/freebsd-14-stable/crypto/openssl/providers/
HDfips.module.sources233 crypto/modes/asm/ghash-alpha.pl
234 crypto/modes/asm/ghash-armv4.pl
235 crypto/modes/asm/ghash-c64xplus.pl
236 crypto/modes/asm/ghash-ia64.pl
237 crypto/modes/asm/ghash-parisc.pl
238 crypto/modes/asm/ghash-s390x.pl
239 crypto/modes/asm/ghash-sparcv9.pl
240 crypto/modes/asm/ghash-x86.pl
241 crypto/modes/asm/ghash-x86_64.pl
HDfips-sources.checksums233 c2e874a8deb418b5d8c935b2e256370566a5150e040c9fa008cdb5b463c26904 crypto/modes/asm/ghash-alpha.pl
234 6bc7d63569c73d7020ede481f2de05221ac92403c7cc11e7263ada7644f6aa9b crypto/modes/asm/ghash-armv4.pl
235 097975df63370de7ebea012d17de14fc1f361fb83acf03b432a99ae7d5bceb24 crypto/modes/asm/ghash-c64xplus.pl
236 fdde3bc48b37790c6e0006014da71e7a831bbb4fdbfcda2d01dbe0ceb0ba88fa crypto/modes/asm/ghash-ia64.pl
237 e472d73d06933667a51a0af973479993eed333c71b43af03095450acb36dbeb4 crypto/modes/asm/ghash-parisc.pl
238 6fb4332ac88113a20915ad4de1931ef88b0114b5379b16e1d967820e1229fbb0 crypto/modes/asm/ghash-s390x.pl
239 6af1a05981e1d41e4dea51e58938360e3abc4a4f58e179908242466d032b1a8a crypto/modes/asm/ghash-sparcv9.pl
240 26f55a57e77f774d17dfba93d757f78edfa3a03f68a71ffa37ccf3bfc468b1e2 crypto/modes/asm/ghash-x86.pl
241 72744131007d2389c09665a59a862f5f6bb61b64bd3456e9b400985cb56586b8 crypto/modes/asm/ghash-x86_64.pl
/freebsd-14-stable/sys/dev/ffec/
HDif_ffec.c980 uint64_t *ghash = arg; in ffec_hash_maddr() local
985 *ghash |= 1LLU << (((uint8_t *)&crc)[3] >> 2); in ffec_hash_maddr()
995 uint64_t ghash, ihash; in ffec_setup_rxfilter() local
1005 ghash = 0xffffffffffffffffLLU; in ffec_setup_rxfilter()
1007 ghash = 0; in ffec_setup_rxfilter()
1008 if_foreach_llmaddr(ifp, ffec_hash_maddr, &ghash); in ffec_setup_rxfilter()
1010 WR4(sc, FEC_GAUR_REG, (uint32_t)(ghash >> 32)); in ffec_setup_rxfilter()
1011 WR4(sc, FEC_GALR_REG, (uint32_t)ghash); in ffec_setup_rxfilter()
/freebsd-14-stable/contrib/llvm-project/lld/COFF/
HDDebugTypes.cpp945 uint32_t insert(COFFLinkerContext &ctx, GloballyHashedType ghash,
1018 uint32_t GHashTable::insert(COFFLinkerContext &ctx, GloballyHashedType ghash, in insert() argument
1026 llvm::byteswap<uint64_t>(*reinterpret_cast<uint64_t *>(&ghash)) % in insert()
1039 while (oldCell.isEmpty() || oldCell.getGHash(ctx) == ghash) { in insert()
1114 GloballyHashedType ghash = source->ghashes[i]; in mergeTypesWithGHash() local
1117 ghashState.table.insert(ctx, ghash, GHashCell(isItem, tpiSrcIdx, i)); in mergeTypesWithGHash()
/freebsd-14-stable/secure/lib/libcrypto/
HDMakefile.asm105 SRCS+= aesni-gcm-x86_64.pl ghash-x86_64.pl
177 SRCS+= ghash-armv4.pl ghashv8-armx.pl
254 SRCS+= ghash-x86.pl
HDMakefile300 SRCS+= aesni-gcm-x86_64.S ghash-x86_64.S
302 SRCS+= ghash-armv4.S ghashv8-armx.S
304 SRCS+= ghash-x86.S
/freebsd-14-stable/crypto/openssl/include/crypto/
HDaes_platform.h109 (gctx)->gcm.ghash==gcm_ghash_v8)
231 ctx->gcm.ghash == gcm_ghash_avx)
HDmodes.h129 void (*ghash) (u64 Xi[2], const u128 Htable[16], const u8 *inp, member
/freebsd-14-stable/sys/dev/cxgbe/crypto/
HDt4_keyctx.c299 t4_init_gmac_hash(const char *key, int klen, char *ghash) in t4_init_gmac_hash() argument
306 rijndaelEncrypt(keysched, rounds, zeroes, ghash); in t4_init_gmac_hash()
/freebsd-14-stable/sys/contrib/openzfs/lib/libicp/
HDMakefile.am76 module/icp/asm-x86_64/modes/ghash-x86_64.S \
/freebsd-14-stable/sys/conf/
HDfiles.arm145 crypto/openssl/arm/ghash-armv4.S optional ossl \
HDfiles.amd64106 crypto/openssl/amd64/ghash-x86_64.S optional ossl
/freebsd-14-stable/crypto/openssl/providers/implementations/ciphers/
HDcipher_aes_gcm_hw_s390x.inc67 * Calculate the ghash of the iv - the result is stored into the tag
/freebsd-14-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
HDOpts.td79 def codeview_ghash : FF<"codeview-ghash", "Enable global hashing for CodeView type stream de-duplic…
/freebsd-14-stable/sys/contrib/openzfs/module/
HDKbuild.in143 asm-x86_64/modes/ghash-x86_64.o
/freebsd-14-stable/sys/crypto/openssl/arm/
HDghash-armv4.S533 @ equivalent of reduction_avx from ghash-x86_64.pl
/freebsd-14-stable/crypto/openssl/test/recipes/30-test_evp_data/
HDevpciph_aes_common.txt819 # local add-ons, primarily streaming ghash tests
/freebsd-14-stable/crypto/openssl/crypto/evp/
HDe_aes.c140 gctx->gcm.ghash==gcm_ghash_avx)
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/Driver/
HDOptions.td4385 defm codeview_ghash : BoolOption<"g", "codeview-ghash",