/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | fips_prf_wolfssl.c | 11 #include <wolfssl/wolfcrypt/sha.h> 19 wc_Sha sha; in sha1_transform() local 21 os_memset(&sha, 0, sizeof(sha)); in sha1_transform() 22 sha.digest[0] = state[0]; in sha1_transform() 23 sha.digest[1] = state[1]; in sha1_transform() 24 sha.digest[2] = state[2]; in sha1_transform() 25 sha.digest[3] = state[3]; in sha1_transform() 26 sha.digest[4] = state[4]; in sha1_transform() 27 wc_ShaUpdate(&sha, dat in sha1_transform() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | fips_prf_wolfssl.c | 11 #include <wolfssl/wolfcrypt/sha.h> 19 wc_Sha sha; in sha1_transform() local 21 os_memset(&sha, 0, sizeof(sha)); in sha1_transform() 22 sha.digest[0] = state[0]; in sha1_transform() 23 sha.digest[1] = state[1]; in sha1_transform() 24 sha.digest[2] = state[2]; in sha1_transform() 25 sha.digest[3] = state[3]; in sha1_transform() 26 sha.digest[4] = state[4]; in sha1_transform() 27 wc_ShaUpdate(&sha, dat in sha1_transform() [all...] |
/third_party/mesa3d/bin/pick/ |
H A D | core.py | 40 sha: str 116 sha: str = attr.ib() 134 c = cls(data['sha'], data['description'], data['nominated'], main_sha=data['main_sha'], because_sha=data['because_sha']) 145 ['git', 'show', '--no-patch', '--format=%cs', self.sha], 154 'git', 'cherry-pick', '-x', self.sha, 164 await ui.feedback(f'{self.sha} ({self.description}) applied successfully') 172 await ui.feedback(f'{self.sha} ({self.description}) failed to apply\n{err}') 185 v = await commit_state(message=f'Mark {self.sha} as denominated') 187 await ui.feedback(f'{self.sha} ({self.description}) denominated successfully') 193 v = await commit_state(message=f'Mark {self.sha} a [all...] |
H A D | ui.py | 70 super().__init__(f'{commit.date()} {reason} {commit.sha[:10]} {commit.description}') 156 sha = self.previous_commits[0].sha 158 sha = f'{version}-branchpoint' 160 new_commits = await core.get_new_commits(sha) 206 sha = await core.full_sha(text) 208 if c.sha == sha: 212 raise RuntimeError(f"Couldn't find {sha}") 216 q = urwid.Edit("Commit sha\ [all...] |
/third_party/node/deps/npm/node_modules/pacote/lib/ |
H A D | git.js | 19 const addGitSha = require('./util/add-git-sha.js') 54 // if we have the full sha and it's a hosted git platform 78 // likely a hosted git repo with a sha, so get the tarball url 132 if (!revDoc || !revDoc.sha) { 137 this.resolvedSha = revDoc.sha 138 this[_addGitSha](revDoc.sha) 150 // when we get the git sha, we affix it to our spec to build up 152 [_addGitSha] (sha) { 153 this[_setResolvedWithSha](addGitSha(this.spec, sha)) 268 const sha [all...] |
/third_party/lzma/CPP/7zip/Crypto/ |
H A D | 7zAes.cpp | 60 // CSha256 sha;
in CalcKey() 61 CAlignedBuffer sha(sizeof(CSha256) + unrollSize + bufSize * 2);
in CalcKey() 62 Byte *buf = sha + sizeof(CSha256);
in CalcKey() 68 Sha256_Init((CSha256 *)(void *)(Byte *)sha);
in CalcKey() 93 Sha256_Update((CSha256 *)(void *)(Byte *)sha, buf, unrollSize);
in CalcKey() 102 Sha256_Update((CSha256 *)(Byte *)sha, buf, bufSize);
in CalcKey() 110 Sha256_Final((CSha256 *)(void *)(Byte *)sha, Key);
in CalcKey() 111 memset(sha, 0, sha.Size());
in CalcKey()
|
/third_party/ffmpeg/libavutil/ |
H A D | random_seed.c | 42 #include "sha.h" 68 struct AVSHA *sha = (void*)tmp; in get_generic_seed() local 114 av_sha_init(sha, 160); in get_generic_seed() 115 av_sha_update(sha, (const uint8_t *)buffer, sizeof(buffer)); in get_generic_seed() 116 av_sha_final(sha, digest); in get_generic_seed()
|
H A D | Makefile | 76 sha.h \ 164 sha.o \ 265 sha \
|
/third_party/FreeBSD/sys/dev/random/ |
H A D | hash.c | 66 SHA256_Init(&context->sha); in randomdev_hash_init() 74 SHA256_Update(&context->sha, data, size); in randomdev_hash_iterate() 84 SHA256_Final(buf, &context->sha); in randomdev_hash_finish()
|
/third_party/lzma/C/ |
H A D | Xz.c | 54 case XZ_CHECK_SHA256: Sha256_Init(&p->sha); break;
in XzCheck_Init() 64 case XZ_CHECK_SHA256: Sha256_Update(&p->sha, (const Byte *)data, size); break;
in XzCheck_Update() 84 Sha256_Final(&p->sha, digest);
in XzCheck_Final()
|
/third_party/gn/src/base/ |
H A D | sha1.cc | 24 // SecureHashAlgorithm sha; 26 // sha.Update(moredata, size of data); 27 // sha.Final(); 28 // memcpy(somewhere, sha.Digest(), 20); 30 // to reuse the instance of sha, call sha.Init(); 206 SecureHashAlgorithm sha; in SHA1HashBytes() local 207 sha.Update(data, len); in SHA1HashBytes() 208 sha.Final(); in SHA1HashBytes() 210 memcpy(hash, sha in SHA1HashBytes() [all...] |
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/ |
H A D | sha1.cc | 28 // SecureHashAlgorithm sha; 30 // sha.Update(moredata, size of data); 31 // sha.Final(); 32 // memcpy(somewhere, sha.Digest(), 20); 34 // to reuse the instance of sha, call sha.Init(); 236 SecureHashAlgorithm sha; in SHA1HashBytes() local 237 sha.Update(data, len); in SHA1HashBytes() 238 sha.Final(); in SHA1HashBytes() 240 memcpy(hash, sha in SHA1HashBytes() [all...] |
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | mod.rs | 27 pub use self::sha::*; 63 mod sha; modules
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | passwd.c | 23 #include <openssl/sha.h> 519 const EVP_MD *sha = NULL; in shacrypt() local 536 sha = EVP_sha256(); in shacrypt() 540 sha = EVP_sha512(); in shacrypt() 609 || !EVP_DigestInit_ex(md, sha, NULL) in shacrypt() 616 || !EVP_DigestInit_ex(md2, sha, NULL) in shacrypt() 642 if (!EVP_DigestInit_ex(md2, sha, NULL)) in shacrypt() 659 if (!EVP_DigestInit_ex(md2, sha, NULL)) in shacrypt() 676 if (!EVP_DigestInit_ex(md2, sha, NULL)) in shacrypt()
|
/third_party/openssl/apps/ |
H A D | passwd.c | 23 #include <openssl/sha.h> 519 const EVP_MD *sha = NULL; in shacrypt() local 536 sha = EVP_sha256(); in shacrypt() 540 sha = EVP_sha512(); in shacrypt() 609 || !EVP_DigestInit_ex(md, sha, NULL) in shacrypt() 616 || !EVP_DigestInit_ex(md2, sha, NULL) in shacrypt() 642 if (!EVP_DigestInit_ex(md2, sha, NULL)) in shacrypt() 659 if (!EVP_DigestInit_ex(md2, sha, NULL)) in shacrypt() 676 if (!EVP_DigestInit_ex(md2, sha, NULL)) in shacrypt()
|
/third_party/mesa3d/.gitlab-ci/bin/ |
H A D | ci_run_n_monitor.py | 71 def wait_for_pipeline(project, sha: str): 75 pipelines = project.pipelines.list(sha=sha)
|
/third_party/ffmpeg/tests/fate/ |
H A D | libavutil.mak | 143 FATE_LIBAVUTIL += fate-sha 144 fate-sha: libavutil/tests/sha$(EXESUF) 145 fate-sha: CMD = run libavutil/tests/sha$(EXESUF)
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/roll-release/ |
H A D | main.go | 178 for name, sha := range tintBranchesToCreate { 179 tasks = append(tasks, fmt.Sprintf("Create Tint release branch '%v' @ %v", name, sha)) 203 for name, sha := range tintBranchesToCreate { 204 log.Println("Creating branch", name, "@", sha, "...") 208 src := plumbing.NewHashReference(plumbing.NewBranchReferenceName(name), sha)
|
/third_party/libabigail/ |
H A D | gen-changelog.py | 133 (sha, maj, min, nano) = match.groups() 134 release_refs[sha] = (maj, min, nano)
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/get-test-plan/ |
H A D | main.go | 469 sha, err := getSha1(desc, id) 475 Sha: sha, 524 sha, err := getSha1(desc, id) 530 Sha: sha, 563 sha, err := getSha1(desc, id) 569 Sha: sha, 799 sha := fmt.Sprintf("%x", sum[0:8]) 800 if sha1sSet[sha] { 803 sha1sSet[sha] = true 804 return sha, ni [all...] |
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
H A D | lib.rs | 60 pub use self::sha::*; 90 mod sha; modules
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha512-mips.pl | 320 .globl sha${label}_block_data_order 321 .ent sha${label}_block_data_order 322 sha${label}_block_data_order: 355 .cpsetup $pf,$zero,sha${label}_block_data_order 450 .end sha${label}_block_data_order
|
/third_party/openssl/crypto/sha/asm/ |
H A D | sha512-mips.pl | 320 .globl sha${label}_block_data_order 321 .ent sha${label}_block_data_order 322 sha${label}_block_data_order: 355 .cpsetup $pf,$zero,sha${label}_block_data_order 450 .end sha${label}_block_data_order
|
/third_party/curl/lib/ |
H A D | curl_sha256.h | 38 * sha.h */ 40 #include <wolfssl/openssl/sha.h>
|
/third_party/node/deps/openssl/openssl/include/crypto/ |
H A D | sha.h | 15 # include <openssl/sha.h>
|