| /freebsd-13-stable/crypto/openssl/crypto/modes/ |
| HD | build.info | 9 GENERATE[ghash-ia64.s]=asm/ghash-ia64.pl $(LIB_CFLAGS) $(LIB_CPPFLAGS) 10 GENERATE[ghash-x86.s]=asm/ghash-x86.pl \ 12 GENERATE[ghash-x86_64.s]=asm/ghash-x86_64.pl $(PERLASM_SCHEME) 14 GENERATE[ghash-sparcv9.S]=asm/ghash-sparcv9.pl $(PERLASM_SCHEME) 15 INCLUDE[ghash-sparcv9.o]=.. 16 GENERATE[ghash-alpha.S]=asm/ghash-alpha.pl $(PERLASM_SCHEME) 17 GENERATE[ghash-parisc.s]=asm/ghash-parisc.pl $(PERLASM_SCHEME) 19 GENERATE[ghash-armv4.S]=asm/ghash-armv4.pl $(PERLASM_SCHEME) 20 INCLUDE[ghash-armv4.o]=.. 23 GENERATE[ghash-s390x.S]=asm/ghash-s390x.pl $(PERLASM_SCHEME) [all …]
|
| HD | gcm128.c | 750 # define CTX__GHASH(f) (ctx->ghash = (f)) 752 # define CTX__GHASH(f) (ctx->ghash = NULL) 936 const u8 *inp, size_t len) = ctx->ghash; 1004 const u8 *inp, size_t len) = ctx->ghash; 1239 const u8 *inp, size_t len) = ctx->ghash; 1484 const u8 *inp, size_t len) = ctx->ghash; 1648 const u8 *inp, size_t len) = ctx->ghash; 1813 const u8 *inp, size_t len) = ctx->ghash;
|
| HD | modes_local.h | 136 void (*ghash) (u64 Xi[2], const u128 Htable[16], const u8 *inp, member
|
| /freebsd-13-stable/sys/contrib/openzfs/module/icp/algs/modes/ |
| HD | gcm.c | 216 uint8_t *ghash, *macp = NULL; in gcm_encrypt_final() local 225 ghash = (uint8_t *)ctx->gcm_ghash; in gcm_encrypt_final() 257 GHASH(ctx, macp, ghash, gops); in gcm_encrypt_final() 264 GHASH(ctx, ctx->gcm_len_a_len_c, ghash, gops); in gcm_encrypt_final() 267 xor_block((uint8_t *)ctx->gcm_J0, ghash); in gcm_encrypt_final() 276 rv = crypto_put_output_data(ghash, out, ctx->gcm_tag_len); in gcm_encrypt_final() 376 uint8_t *ghash; in gcm_decrypt_final() local 387 ghash = (uint8_t *)ctx->gcm_ghash; in gcm_decrypt_final() 405 GHASH(ctx, blockp, ghash, gops); in gcm_decrypt_final() 428 GHASH(ctx, ctx->gcm_len_a_len_c, ghash, gops); in gcm_decrypt_final() [all …]
|
| /freebsd-13-stable/contrib/wpa/src/crypto/ |
| HD | aes-gcm.c | 103 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-13-stable/cddl/lib/libicp/ |
| HD | Makefile | 16 asm-x86_64/modes/ghash-x86_64.S \ 92 CFLAGS.ghash-x86_64.S+= -DLOCORE
|
| /freebsd-13-stable/sys/dev/ffec/ |
| HD | if_ffec.c | 980 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-13-stable/contrib/llvm-project/lld/COFF/ |
| HD | DebugTypes.cpp | 945 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-13-stable/sys/contrib/openzfs/lib/libicp/ |
| HD | Makefile.am | 21 asm-x86_64/modes/ghash-x86_64.S \
|
| /freebsd-13-stable/secure/lib/libcrypto/ |
| HD | Makefile.asm | 102 SRCS+= aesni-gcm-x86_64.pl ghash-x86_64.pl 173 SRCS+= ghash-armv4.pl ghashv8-armx.pl 251 SRCS+= ghash-x86.pl
|
| HD | Makefile | 281 SRCS+= aesni-gcm-x86_64.S ghash-x86_64.S 283 SRCS+= ghash-armv4.S ghashv8-armx.S 285 SRCS+= ghash-x86.S
|
| /freebsd-13-stable/cddl/lib/libicp_rescue/ |
| HD | Makefile | 89 CFLAGS.ghash-x86_64.S+= -DLOCORE
|
| /freebsd-13-stable/sys/contrib/openzfs/module/icp/ |
| HD | Makefile.in | 55 $(MODULE)-$(CONFIG_X86_64) += asm-x86_64/modes/ghash-x86_64.o
|
| /freebsd-13-stable/sys/dev/cxgbe/crypto/ |
| HD | t4_keyctx.c | 299 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-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| HD | Opts.td | 79 def codeview_ghash : FF<"codeview-ghash", "Enable global hashing for CodeView type stream de-duplic…
|
| /freebsd-13-stable/sys/crypto/openssl/arm/ |
| HD | ghash-armv4.S | 532 @ equivalent of reduction_avx from ghash-x86_64.pl
|
| /freebsd-13-stable/crypto/openssl/crypto/evp/ |
| HD | e_aes.c | 261 gctx->gcm.ghash==gcm_ghash_avx) 263 gctx->gcm.ghash==gcm_ghash_avx)
|
| /freebsd-13-stable/contrib/llvm-project/clang/include/clang/Driver/ |
| HD | Options.td | 4385 defm codeview_ghash : BoolOption<"g", "codeview-ghash",
|