HomeSort by relevance Sort by last modified time
    Searched full:sha1 (Results 1 - 25 of 388) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dropbear/libtomcrypt/src/hashes/
sha1.c 14 @file sha1.c
15 SHA1 code by Tom St Denis
19 #ifdef SHA1
23 "sha1",
61 a = md->sha1.state[0];
62 b = md->sha1.state[1];
63 c = md->sha1.state[2];
64 d = md->sha1.state[3];
65 e = md->sha1.state[4];
141 md->sha1.state[0] = md->sha1.state[0] + a
    [all...]
  /external/dbus/test/data/valid-config-files/
debug-allow-all-sha1.conf 1 <!-- Bus that listens on a debug pipe and requires SHA1 auth, used to test SHA1 -->
debug-allow-all-sha1.conf.in 1 <!-- Bus that listens on a debug pipe and requires SHA1 auth, used to test SHA1 -->
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_peap_common.c 18 #include "crypto/sha1.h"
43 * T1 = HMAC-SHA1(K, S | 0x01 | 0x00 | 0x00)
44 * T2 = HMAC-SHA1(K, T1 | S | 0x02 | 0x00 | 0x00)
46 * Tn = HMAC-SHA1(K, Tn-1 | S | n | 0x00 | 0x00)
59 * T1 = HMAC-SHA1(K, S | LEN | 0x01)
60 * T2 = HMAC-SHA1 (K, T1 | S | LEN | 0x02)
61 * T3 = HMAC-SHA1 (K, T2 | S | LEN | 0x03)
62 * T4 = HMAC-SHA1 (K, T3 | S | LEN | 0x04)
  /dalvik/libdex/
sha1.h 2 * See "sha1.c" for author info.
  /system/core/fastboot/
signfile.sh 9 openssl dgst -passin pass:"$3" -binary -sha1 -sign $1.pem $2 > $2.sign
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JCEDigestUtil.java 24 private static Set sha1 = new HashSet(); field in class:JCEDigestUtil
37 sha1.add("SHA1");
38 sha1.add("SHA-1");
39 sha1.add(OIWObjectIdentifiers.idSHA1.getId());
60 oids.put("SHA1", OIWObjectIdentifiers.idSHA1);
86 if (sha1.contains(digestName))
118 return (sha1.contains(digest1) && sha1.contains(digest2))
  /external/ipsec-tools/src/racoon/samples/
racoon.conf.sample-inherit 24 hash_algorithm sha1;
42 hash_algorithm sha1;
  /frameworks/base/media/libdrm/mobile2/src/util/crypto/
DrmCrypto.cpp 107 Sha1Agent sha1; local
108 sha1.computeHash(rawData,rawLen,mHash);
137 Sha1Agent sha1; local
138 sha1.computeHash(rawData,rawLen,mHash);
183 Sha1Agent sha1; local
184 sha1.computeHash(rawData,rawLen,mHash);
203 Sha1Agent sha1; local
204 sha1.computeHash(rawData,rawLen,mHash);
  /external/ipsec-tools/src/racoon/samples/roadwarrior/server/
racoon.conf 18 hash_algorithm sha1;
racoon.conf-radius 18 hash_algorithm sha1;
  /external/ppp/pppd/
sha1.h 0 /* sha1.h */
openssl-hash.c 24 /* Use the SHA1 functions in openssl to save the flash space.*/
26 sha1_md = EVP_get_digestbyname("sha1");
28 dbglog("Error Unknown message digest SHA1\n");
  /bootable/recovery/applypatch/
main.c 46 // Parse arguments (which should be of the form "<sha1>" or
47 // "<sha1>:<filename>" into the new parallel arrays *sha1s and
68 printf("failed to parse sha1 \"%s\"\n", argv[i]);
144 // - if the sha1 hash of <tgt-file> is <tgt-sha1>, does nothing and exits
147 // - otherwise, if the sha1 hash of <src-file> is <src-sha1>, applies the
150 // file has sha1 hash <tgt-sha1>, moves it to replace <tgt-file>, and
166 "usage: %s <src-file> <tgt-file> <tgt-sha1> <tgt-size>
    [all...]
  /bionic/libc/include/
sha1.h 1 /* $NetBSD: sha1.h,v 1.13 2005/12/26 18:41:36 perry Exp $ */
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/iana/
IANAObjectIdentifiers.java 7 // id-SHA1 OBJECT IDENTIFIER ::=
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
DSAParametersGenerator.java 74 SHA1Digest sha1 = new SHA1Digest(); local
88 sha1.update(seed, 0, seed.length);
90 sha1.doFinal(part1, 0);
96 sha1.update(part2, 0, part2.length);
98 sha1.doFinal(part2, 0);
121 sha1.update(part1, 0, part1.length);
122 sha1.doFinal(part1, 0);
127 sha1.update(part1, 0, part1.length);
128 sha1.doFinal(part1, 0);
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLMessageDigestJDK.java 25 * @param algorithm The name of the algorithm, e.g. "SHA1".
39 * @param algorithm The name of the algorithm, e.g. "SHA1".
100 static public class SHA1 extends OpenSSLMessageDigestJDK {
101 public SHA1() throws NoSuchAlgorithmException {
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
racoon.conf 20 hash_algorithm sha1;
  /external/webkit/SunSpider/tests/sunspider-0.9/
LIST 15 crypto-sha1
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
LIST 15 crypto-sha1
  /ndk/build/platforms/android-3/arch-arm/usr/include/
sha1.h 1 /* $NetBSD: sha1.h,v 1.13 2005/12/26 18:41:36 perry Exp $ */
  /ndk/build/platforms/android-4/arch-arm/usr/include/
sha1.h 1 /* $NetBSD: sha1.h,v 1.13 2005/12/26 18:41:36 perry Exp $ */
  /ndk/build/platforms/android-5/arch-arm/usr/include/
sha1.h 1 /* $NetBSD: sha1.h,v 1.13 2005/12/26 18:41:36 perry Exp $ */
  /ndk/build/platforms/android-5/arch-x86/usr/include/
sha1.h 1 /* $NetBSD: sha1.h,v 1.13 2005/12/26 18:41:36 perry Exp $ */

Completed in 58 milliseconds

1 2 3 4 5 6 7 8 91011>>