HomeSort by relevance Sort by last modified time
    Searched refs:SHA1 (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/perfetto/tools/
roll-catapult-trace-viewer 17 # pinned SHA1 in install-build-deps.
53 SHA1CMD='import hashlib; import sys; sha1=hashlib.sha1(); sha1.update(sys.stdin.read()); print(sha1.hexdigest())'
54 SHA1=$(python -c "$SHA1CMD" < "$ARCHIVE")
55 GCS_TARGET="gs://perfetto/catapult_trace_viewer-$SHA1.tar.gz"
61 "s/^CATAPULT_SHA1 =.*/CATAPULT_SHA1 = '"$SHA1"'/g" \
  /external/deqp/external/
fetch_kc_cts.py 35 SHA1 = "be43972ee52d445cb4baa102dc1508760d739e14"
41 SHA1,
  /external/llvm/include/llvm/Support/
SHA1.h 1 //==- SHA1.h - SHA1 implementation for LLVM --*- C++ -*-==//
10 // (http://oauth.googlecode.com/svn/code/c/liboauth/src/sha1.c)
27 /// A class that wrap the SHA1 algorithm.
28 class SHA1 {
30 SHA1() { init(); }
44 /// Return a reference to the current raw 160-bits SHA1 for the digested data
50 /// Return a reference to the current raw 160-bits SHA1 for the digested data
51 /// since the last call to init(). This is suitable for getting the SHA1 at
raw_sha1_ostream.h 1 //==- raw_sha1_ostream.h - raw_ostream that compute SHA1 --*- C++ -*-==//
18 #include "llvm/Support/SHA1.h"
23 /// A raw_ostream that hash the content using the sha1 algorithm.
25 SHA1 State;
33 /// Return the current SHA1 hash for the content of the stream
34 StringRef sha1() { function in class:llvm::raw_sha1_ostream
  /external/conscrypt/common/src/main/java/org/conscrypt/
EvpMdRef.java 41 } else if (SHA1.JCA_NAME.equals(algorithmUpper)
42 || SHA1.OID.equals(algorithmUpper)) {
43 return SHA1.JCA_NAME;
62 } else if (SHA1.JCA_NAME.equals(algorithmUpper)) {
63 return EvpMdRef.SHA1.EVP_MD;
80 } else if (SHA1.JCA_NAME.equals(algorithmUpper)) {
81 return EvpMdRef.SHA1.SIZE_BYTES;
94 } else if (evpMdRef == SHA1.EVP_MD) {
95 return SHA1.JCA_NAME;
118 static final class SHA1 {
    [all...]
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
EvpMdRef.java 40 } else if (SHA1.JCA_NAME.equals(algorithmUpper) || SHA1.OID.equals(algorithmUpper)) {
41 return SHA1.JCA_NAME;
58 } else if (SHA1.JCA_NAME.equals(algorithmUpper)) {
59 return EvpMdRef.SHA1.EVP_MD;
76 } else if (SHA1.JCA_NAME.equals(algorithmUpper)) {
77 return EvpMdRef.SHA1.SIZE_BYTES;
90 } else if (evpMdRef == SHA1.EVP_MD) {
91 return SHA1.JCA_NAME;
114 static final class SHA1 {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
raw_sha1_ostream.h 1 //==- raw_sha1_ostream.h - raw_ostream that compute SHA1 --*- C++ -*-==//
18 #include "llvm/Support/SHA1.h"
23 /// A raw_ostream that hash the content using the sha1 algorithm.
25 SHA1 State;
33 /// Return the current SHA1 hash for the content of the stream
34 StringRef sha1() { function in class:llvm::raw_sha1_ostream
SHA1.h 1 //==- SHA1.h - SHA1 implementation for LLVM --*- C++ -*-==//
10 // (http://oauth.googlecode.com/svn/code/c/liboauth/src/sha1.c)
28 /// A class that wrap the SHA1 algorithm.
29 class SHA1 {
31 SHA1() { init(); }
45 /// Return a reference to the current raw 160-bits SHA1 for the digested data
51 /// Return a reference to the current raw 160-bits SHA1 for the digested data
52 /// since the last call to init(). This is suitable for getting the SHA1 at
57 /// Returns a raw 160-bit SHA1 hash for the given data
    [all...]
  /build/make/tools/releasetools/
ota_package_parser.py 34 def StashBlocks(self, SHA1, blocks):
35 if SHA1 in self.stash_map:
36 logging.info("already stashed {}: {}".format(SHA1, blocks))
41 self.stash_map[SHA1] = blocks
43 def FreeBlocks(self, SHA1):
44 assert self.stash_map.has_key(SHA1), "stash {} not found".format(SHA1)
45 self.current_stash_size -= self.stash_map[SHA1].size()
46 del self.stash_map[SHA1]
48 def HandleOverlapBlocks(self, SHA1, blocks)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
Twofish.java 91 super("PBEwithSHAandTwofish-CBC", null, true, PKCS12, SHA1, 256, 128);
103 super(new CBCBlockCipher(new TwofishEngine()), PKCS12, SHA1, 256, 16);
ARC4.java 46 super("PBEWithSHAAnd128BitRC4", PKCSObjectIdentifiers.pbeWithSHAAnd128BitRC4, true, PKCS12, SHA1, 128, 0);
58 super("PBEWithSHAAnd128BitRC4", PKCSObjectIdentifiers.pbeWithSHAAnd128BitRC4, true, PKCS12, SHA1, 40, 0);
71 super(new RC4Engine(), 0, 128, SHA1);
83 super(new RC4Engine(), 0, 40, SHA1);
RC2.java 110 super("PBEwithSHA1andRC2", PKCSObjectIdentifiers.pbeWithSHA1AndRC2_CBC, true, PKCS5S1, SHA1, 64, 64);
122 super("PBEwithSHAand128BitRC2-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd128BitRC2_CBC, true, PKCS12, SHA1, 128, 64);
134 super("PBEwithSHAand40BitRC2-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd40BitRC2_CBC, true, PKCS12, SHA1, 40, 64);
158 super(new CBCBlockCipher(new RC2Engine()), PKCS5S1, SHA1, 64, 8);
170 super(new CBCBlockCipher(new RC2Engine()), PKCS12, SHA1, 128, 8);
182 super(new CBCBlockCipher(new RC2Engine()), PKCS12, SHA1, 40, 8);
  /external/llvm/lib/Support/
SHA1.cpp 1 //======- SHA1.h - Private copy of the SHA1 implementation ---*- C++ -* ======//
10 // (http://oauth.googlecode.com/svn/code/c/liboauth/src/sha1.c)
17 #include "llvm/Support/SHA1.h"
40 void SHA1::init() {
54 void SHA1::hashBlock() {
93 void SHA1::addUncounted(uint8_t data) {
107 void SHA1::writebyte(uint8_t data) {
112 void SHA1::update(ArrayRef<uint8_t> Data) {
117 void SHA1::pad()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
AndroidDigestFactoryOpenSSL.java 26 return new OpenSSLDigest.SHA1();
OpenSSLDigest.java 78 public static class SHA1 extends OpenSSLDigest {
79 public SHA1() { super("SHA-1", 64); }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
SHA1.java 14 public class SHA1
16 private SHA1()
41 * SHA1 HMac
62 * SHA1 HMac
81 super("PBEwithHmacSHA", null, false, PKCS12, SHA1, 160, 0);
88 private static final String PREFIX = SHA1.class.getName();
97 provider.addAlgorithm("Alg.Alias.MessageDigest.SHA1", "SHA-1");
101 addHMACAlgorithm(provider, "SHA1", PREFIX + "$HashMac", PREFIX + "$KeyGenerator");
102 addHMACAlias(provider, "SHA1", PKCSObjectIdentifiers.id_hmacWithSHA1);
103 addHMACAlias(provider, "SHA1", IANAObjectIdentifiers.hmacSHA1)
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/digests/
AndroidDigestFactoryOpenSSL.java 30 return new OpenSSLDigest.SHA1();
OpenSSLDigest.java 86 public static class SHA1 extends OpenSSLDigest {
87 public SHA1() { super("SHA-1", 64); }
  /external/vboot_reference/utility/
dev_make_keypair 19 0 = RSA1024 with SHA1
22 3 = RSA2048 with SHA1
25 6 = RSA4096 with SHA1
28 9 = RSA8192 with SHA1
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/symmetric/
RC2.java 115 super("PBEwithSHA1andRC2", PKCSObjectIdentifiers.pbeWithSHA1AndRC2_CBC, true, PKCS5S1, SHA1, 64, 64);
128 super("PBEwithSHAand128BitRC2-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd128BitRC2_CBC, true, PKCS12, SHA1, 128, 64);
141 super("PBEwithSHAand40BitRC2-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd40BitRC2_CBC, true, PKCS12, SHA1, 40, 64);
167 super(new CBCBlockCipher(new RC2Engine()), PKCS5S1, SHA1, 64, 8);
180 super(new CBCBlockCipher(new RC2Engine()), PKCS12, SHA1, 128, 8);
193 super(new CBCBlockCipher(new RC2Engine()), PKCS12, SHA1, 40, 8);
ARC4.java 57 super("PBEWithSHAAnd128BitRC4", PKCSObjectIdentifiers.pbeWithSHAAnd128BitRC4, true, PKCS12, SHA1, 128, 0);
70 super("PBEWithSHAAnd128BitRC4", PKCSObjectIdentifiers.pbeWithSHAAnd128BitRC4, true, PKCS12, SHA1, 40, 0);
84 super(new RC4Engine(), 0, 128, SHA1);
97 super(new RC4Engine(), 0, 40, SHA1);
  /external/libchrome/crypto/
hmac.cc 23 DCHECK(hash_alg_ == SHA1 || hash_alg_ == SHA256);
34 case SHA1:
62 return !!::HMAC(hash_alg_ == SHA1 ? EVP_sha1() : EVP_sha256(), key_.data(),
signature_creator.h 30 SHA1,
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/digest/
SHA1.java 18 public class SHA1
20 private SHA1()
48 * SHA1 HMac
73 * SHA1 HMac
94 super("PBEwithHmacSHA", null, false, PKCS12, SHA1, 160, 0);
104 private static final String PREFIX = SHA1.class.getName();
113 provider.addAlgorithm("Alg.Alias.MessageDigest.SHA1", "SHA-1");
117 addHMACAlgorithm(provider, "SHA1", PREFIX + "$HashMac", PREFIX + "$KeyGenerator");
118 addHMACAlias(provider, "SHA1", PKCSObjectIdentifiers.id_hmacWithSHA1);
119 addHMACAlias(provider, "SHA1", IANAObjectIdentifiers.hmacSHA1)
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
HashFunctionEnum.java 34 SHA1(Hashing.sha1()),

Completed in 3534 milliseconds

1 2 3 4 5 6