Home
last modified time | relevance | path

Searched refs:digest (Results 551 - 575 of 1155) sorted by relevance

1...<<21222324252627282930>>...47

/kernel/linux/linux-5.10/arch/powerpc/crypto/
H A Dcrc32c-vpmsum_glue.c138 .digest = crc32c_vpmsum_digest,
/kernel/linux/linux-5.10/arch/sparc/crypto/
H A Dmd5_glue.c29 asmlinkage void md5_sparc64_transform(u32 *digest, const char *data,
82 /* Add padding and return the message digest. */
106 /* Store state in digest */ in md5_sparc64_final()
H A Dsha1_glue.c26 asmlinkage void sha1_sparc64_transform(u32 *digest, const char *data,
77 /* Add padding and return the message digest. */
101 /* Store state in digest */ in sha1_sparc64_final()
/kernel/linux/linux-5.10/arch/x86/crypto/
H A Dcrc32-pclmul_glue.c157 .digest = crc32_pclmul_digest,
/kernel/linux/linux-6.6/arch/powerpc/crypto/
H A Dcrc32c-vpmsum_glue.c138 .digest = crc32c_vpmsum_digest,
/kernel/linux/linux-6.6/arch/arm64/crypto/
H A Dsha2-ce-glue.c56 asmlinkage void sha256_block_data_order(u32 *digest, u8 const *src, int blocks);
/kernel/linux/linux-6.6/arch/sparc/crypto/
H A Dmd5_glue.c29 asmlinkage void md5_sparc64_transform(u32 *digest, const char *data,
83 /* Add padding and return the message digest. */
107 /* Store state in digest */ in md5_sparc64_final()
H A Dsha256_glue.c27 asmlinkage void sha256_sparc64_transform(u32 *digest, const char *data,
90 /* Store state in digest */ in sha256_sparc64_final()
H A Dsha512_glue.c26 asmlinkage void sha512_sparc64_transform(u64 *digest, const char *data,
94 /* Store state in digest */ in sha512_sparc64_final()
H A Dsha1_glue.c27 asmlinkage void sha1_sparc64_transform(u32 *digest, const char *data,
67 /* Add padding and return the message digest. */
91 /* Store state in digest */ in sha1_sparc64_final()
/kernel/linux/linux-5.10/include/net/
H A Dflow_dissector.h334 * This structure is used to hold a digest of the full flow keys. This is a
344 void make_flow_keys_digest(struct flow_keys_digest *digest,
/kernel/linux/linux-5.10/include/crypto/
H A Dsha.h124 void sha1_transform(__u32 *digest, const char *data, __u32 *W);
/kernel/linux/linux-6.6/crypto/
H A Dcrypto_null.c99 .digest = null_digest,
/kernel/linux/linux-6.6/arch/x86/crypto/
H A Dcrc32-pclmul_glue.c157 .digest = crc32_pclmul_digest,
/test/xts/acts/security_lite/huks/liteos_a_adapter/
H A Dhks_derive_test.cpp133 deriveParamSetParams->setDigest, deriveParamSetParams->digest, in DeriveKey()
/test/xts/acts/security_lite/huks/liteos_m_adapter/
H A Dhks_hash_test.c119 g_testHashParams[index].paramSetParams.setDigest, g_testHashParams[index].paramSetParams.digest); in ExecHksHashTestCommon()
H A Dhks_generate_key_test.c123 g_testGenKeyParams[index].paramSetParams.setDigest, g_testGenKeyParams[index].paramSetParams.digest, in ExecHksGenerateKeyTest001()
/third_party/node/src/crypto/
H A Dcrypto_sig.h118 const EVP_MD* digest = nullptr; member
/third_party/node/deps/npm/node_modules/@sigstore/bundle/dist/
H A Dvalidate.js91 if (b.content.messageSignature.messageDigest.digest.length === 0) {
92 invalidValues.push('content.messageSignature.messageDigest.digest');
/third_party/skia/src/core/
H A DSkScalerCache.h119 std::tuple<SkGlyphDigest, size_t> digest(SkPackedGlyphID) SK_REQUIRES(fMu);
121 // Generate the glyph digest information and update structures to add the glyph.
/third_party/openssl/ohos_lite/include/openssl/
H A Dstore.h178 OSSL_STORE_SEARCH *OSSL_STORE_SEARCH_by_key_fingerprint(const EVP_MD *digest,
/kernel/linux/linux-5.10/drivers/crypto/
H A Ds5p-sss.c341 * @digest: Digest message or IV for partial result
342 * @nregs: Number of HW registers for digest or IV read/write
359 u8 digest[SHA256_DIGEST_SIZE]; member
791 u32 *hash = (u32 *)ctx->digest; in s5p_hash_read_msg()
806 const u32 *hash = (const u32 *)ctx->digest; in s5p_hash_write_ctx_iv()
825 * s5p_hash_copy_result() - copy digest into req->result
835 memcpy(req->result, ctx->digest, ctx->nregs * HASH_REG_SIZEOF); in s5p_hash_copy_result()
1138 * For digest or finup all conditions can be good, and we may not need any
1188 * Note: will enter here only if (digest or finup) and aligned in s5p_hash_prepare_sgs()
1309 * s5p_hash_finish() - copy calculated digest t
[all...]
/kernel/linux/linux-6.6/drivers/crypto/
H A Ds5p-sss.c342 * @digest: Digest message or IV for partial result
343 * @nregs: Number of HW registers for digest or IV read/write
360 u8 digest[SHA256_DIGEST_SIZE]; member
788 u32 *hash = (u32 *)ctx->digest; in s5p_hash_read_msg()
803 const u32 *hash = (const u32 *)ctx->digest; in s5p_hash_write_ctx_iv()
822 * s5p_hash_copy_result() - copy digest into req->result
832 memcpy(req->result, ctx->digest, ctx->nregs * HASH_REG_SIZEOF); in s5p_hash_copy_result()
1135 * For digest or finup all conditions can be good, and we may not need any
1185 * Note: will enter here only if (digest or finup) and aligned in s5p_hash_prepare_sgs()
1306 * s5p_hash_finish() - copy calculated digest t
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
H A Dmod.rs222 let digest = cert.digest(MessageDigest::sha1()).unwrap(); in verify_callback()
223 assert_eq!(hex::encode(digest), expected); in verify_callback()
244 let digest = cert.digest(MessageDigest::sha1()).unwrap(); in ssl_verify_callback()
245 assert_eq!(hex::encode(digest), expected); in ssl_verify_callback()
290 let fingerprint = cert.digest(MessageDigest::sha1()).unwrap(); in peer_certificate()
/kernel/linux/linux-5.10/drivers/crypto/ccree/
H A Dcc_hash.c85 /* holds the origin digest; the digest after "setkey" if HMAC,*
86 * the initial digest if HASH.
124 dev_err(dev, "Mapping digest result buffer %u B for DMA failed\n", in cc_map_result()
128 dev_dbg(dev, "Mapped digest result buffer %u B at va=%pK to dma=%pad\n", in cc_map_result()
187 dev_err(dev, "Mapping digest len %d B at va=%pK for DMA failed\n", in cc_map_req()
191 dev_dbg(dev, "Mapped digest %d B at va=%pK to dma=%pad\n", in cc_map_req()
200 dev_err(dev, "Mapping digest len %u B at va=%pK for DMA failed\n", in cc_map_req()
204 dev_dbg(dev, "Mapped digest len %u B at va=%pK to dma=%pad\n", in cc_map_req()
215 dev_err(dev, "Mapping opad digest in cc_map_req()
[all...]

Completed in 17 milliseconds

1...<<21222324252627282930>>...47