/third_party/openssl/test/recipes/ |
H A D | 20-test_kdf.t | 19 { cmd => [qw{openssl kdf -keylen 16 -digest SHA256 -kdfopt secret:secret -kdfopt seed:seed TLS1-PRF}], 21 desc => 'TLS1-PRF SHA256' }, 25 { cmd => [qw{openssl kdf -keylen 10 -digest SHA256 -kdfopt key:secret -kdfopt salt:salt -kdfopt info:label HKDF}], 27 desc => 'HKDF SHA256' }, 28 { cmd => [qw{openssl kdf -keylen 25 -digest SHA256 -kdfopt pass:passwordPASSWORDpassword -kdfopt salt:saltSALTsaltSALTsaltSALTsaltSALTsalt -kdfopt iter:4096 PBKDF2}], 30 desc => 'PBKDF2 SHA256'}, 34 { cmd => [qw{openssl kdf -keylen 16 -mac HMAC -digest SHA256 -kdfopt hexkey:b74a149a161546f8c20b06ac4ed4 -kdfopt hexinfo:348a37a27ef1282f5f020dcc -kdfopt hexsalt:3638271ccd68a25dc24ecddd39ef3f89 SSKDF}], 36 desc => 'SSKDF HMAC SHA256'}, 40 { cmd => [qw{openssl kdf -keylen 16 -digest SHA256 -kdfopt hexkey:0102030405 -kdfopt hexxcghash:06090A -kdfopt hexsession_id:01020304 -kdfopt type:A SSHKDF}], 42 desc => 'SSHKDF SHA256'}, [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | hash.c | 48 SHA256, enumerator 77 [SHA256] = {"SHA256", 32}, 123 case SHA256: res->ctx = av_sha_alloc(); break; in av_hash_alloc() 150 case SHA256: av_sha_init(ctx->ctx, 256); break; in av_hash_init() 171 case SHA256: av_sha_update(ctx->ctx, src, len); break; in av_hash_update() 192 case SHA256: av_sha_final(ctx->ctx, dst); break; in av_hash_final()
|
/third_party/node/tools/ |
H A D | release.sh | 124 gpg --default-key "$gpgkey" --clearsign --digest-algo SHA256 "${tmpdir}/${shafile}" 125 gpg --default-key "$gpgkey" --detach-sign --digest-algo SHA256 "${tmpdir}/${shafile}"
|
/third_party/mbedtls/tests/data_files/ |
H A D | Makefile | 52 $(MBEDTLS_CERT_REQ) output_file=$@ filename=$(test_ca_key_file_rsa) password=$(test_ca_pwd_rsa) subject_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" md=SHA256 83 $(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" issuer_key=$(test_ca_key_file_rsa) issuer_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA256 version=3 output_file=$@ 193 subject_name="C=NL,O=PolarSSL,CN=Polarssl Test EC CA" md=SHA256 202 md=SHA256 version=3 output_file=$@ 215 not_before=20290210144400 not_after=20390210144400 md=SHA256 version=3 output_file=$@ 264 $(MBEDTLS_CERT_REQ) output_file=$@ filename=$(test_ca_key_file_ec) subject_name="C=NL, O=PolarSSL, CN=Polarssl Test EC CA" md=SHA256 338 $(MBEDTLS_CERT_WRITE) request_file=$< serial=4 issuer_crt=$(test_ca_crt) issuer_key=$(test_ca_key_file_rsa) issuer_pwd=$(test_ca_pwd_rsa) not_before=20190210144406 not_after=20290210144406 md=SHA256 version=3 output_file=$@ 411 md=SHA256 version=3 output_file=$@ 419 $(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Test Client 2" md=SHA256 424 $(MBEDTLS_CERT_WRITE) request_file=cli2.req.sha256 serial=13 selfsign=0 issuer_name="C=NL,O=PolarSSL,CN=PolarSSL Test EC CA" issuer_key=$(test_ca_key_file_ec) issuer_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA256 versio [all...] |
/third_party/node/deps/openssl/openssl/crypto/sha/ |
H A D | sha1_one.c | 56 unsigned char *SHA256(const unsigned char *d, size_t n, unsigned char *md) in SHA256() function 62 return EVP_Q_digest(NULL, "SHA256", NULL, d, n, md, NULL) ? md : NULL; in SHA256()
|
/third_party/openssl/crypto/sha/ |
H A D | sha1_one.c | 56 unsigned char *SHA256(const unsigned char *d, size_t n, unsigned char *md) in SHA256() function 62 return EVP_Q_digest(NULL, "SHA256", NULL, d, n, md, NULL) ? md : NULL; in SHA256()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
H A D | sha.rs | 48 pub unsafe fn SHA256(d: *const c_uchar, n: size_t, md: *mut c_uchar) -> *mut c_uchar { in SHA256() functions 51 "SHA256\0".as_ptr() as *const c_char, in SHA256()
|
/third_party/fsverity-utils/programs/ |
H A D | test_compute_digest.c | 298 SHA256(block, size, digest); in handle_merkle_tree_block() 339 SHA256(descriptor, size, digest); in handle_descriptor()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | sha.rs | 70 /// Computes the SHA256 hash of some data. 71 #[corresponds(SHA256)] 76 ffi::SHA256(data.as_ptr(), data.len(), hash.as_mut_ptr() as *mut _); 202 /// An object which calculates a SHA256 hash of some data.
|
H A D | nid.rs | 753 pub const SHA256: Nid = Nid(ffi::NID_sha256); consts 1102 assert_eq!(algs.digest, Nid::SHA256); in signature_digest()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | sha.h | 82 unsigned char *SHA256(const unsigned char *d, size_t n, unsigned char *md);
|
/third_party/openssl/include/openssl/ |
H A D | sha.h | 82 unsigned char *SHA256(const unsigned char *d, size_t n, unsigned char *md);
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | sha.h | 65 unsigned char *SHA256(const unsigned char *d, size_t n, unsigned char *md);
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | sha.rs | 64 pub fn SHA256(d: *const c_uchar, n: size_t, md: *mut c_uchar) -> *mut c_uchar; in SHA256() functions
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | legacy_sha.c | 58 IMPLEMENT_LEGACY_EVP_MD_METH(sha256, SHA256)
|
/third_party/openssl/test/ |
H A D | sha_test.c | 69 return test_static_sha_common("abc", SHA256_DIGEST_LENGTH, output, &SHA256); in test_static_sha256()
|
/third_party/openssl/crypto/evp/ |
H A D | legacy_sha.c | 58 IMPLEMENT_LEGACY_EVP_MD_METH(sha256, SHA256)
|
/third_party/ffmpeg/tools/ |
H A D | crypto_bench.c | 219 DEFINE_CRYPTO_WRAPPER(sha256, SHA256) 311 DEFINE_GCRYPT_WRAPPER(sha256, SHA256) 469 DEFINE_TOMCRYPT_WRAPPER(sha256, sha256, SHA256)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | CodeView.h | 561 enum class FileChecksumKind : uint8_t { None, MD5, SHA1, SHA256 };
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBTypes.h | 117 enum class PDB_Checksum { None = 0, MD5 = 1, SHA1 = 2, SHA256 = 3 }; member in llvm::pdb::PDB_Checksum 209 // 8829d00f-11b8-4213-878b-770e8597ac16 SHA256 (HashDataSize is 32)
|
/third_party/toybox/toys/lsb/ |
H A D | md5sum.c | 262 USE_SHA256SUM(HASH_INIT("sha256sum", SHA256),) in do_lib_hash()
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha512-sparcv9.pl | 19 # SHA256 performance improvement over compiler generated code varies 30 # duality. Nevertheless it's ~40% faster than SHA256, which is pretty 41 # [3.4] behind by over 4x factor! If compared to SHA256, single thread 43 # amount of threads for given CPU exceeds corresponding one of SHA256 54 # SPARC T4 SHA256/512 hardware achieves 3.17/2.01 cycles per byte, 130 ########### SHA256 276 ########### SHA256 595 $code.=<<___ if ($SZ==4); # SHA256 620 .word 0x81b02840 ! SHA256 663 .word 0x81b02840 ! SHA256 [all...] |
/third_party/openssl/crypto/sha/asm/ |
H A D | sha512-sparcv9.pl | 19 # SHA256 performance improvement over compiler generated code varies 30 # duality. Nevertheless it's ~40% faster than SHA256, which is pretty 41 # [3.4] behind by over 4x factor! If compared to SHA256, single thread 43 # amount of threads for given CPU exceeds corresponding one of SHA256 54 # SPARC T4 SHA256/512 hardware achieves 3.17/2.01 cycles per byte, 130 ########### SHA256 276 ########### SHA256 595 $code.=<<___ if ($SZ==4); # SHA256 620 .word 0x81b02840 ! SHA256 663 .word 0x81b02840 ! SHA256 [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
H A D | EnumTables.cpp | 133 CV_ENUM_CLASS_ENT(FileChecksumKind, SHA256),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/ |
H A D | PDBExtras.cpp | 194 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Checksum, SHA256, OS) in operator <<()
|