HomeSort by relevance Sort by last modified time
    Searched refs:algorithm (Results 26 - 50 of 492) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/security/
SecureRandom.java 32 * compatible with the SHA1PRNG algorithm on the reference
36 * <p>The default algorithm is defined by the first {@code SecureRandomSpi}
44 * algorithm must be secure.
79 private String algorithm; field in class:SecureRandom
93 * Constructs a new {@code SecureRandom} that uses the default algorithm.
102 this.algorithm = "SHA1PRNG";
107 this.algorithm = service.getAlgorithm();
116 * algorithm. <a href="#insecure_seed">Seeding {@code SecureRandom} may be
141 String algorithm) {
144 this.algorithm = algorithm
    [all...]
Signature.java 47 // The algorithm.
48 private String algorithm; field in class:Signature
77 * the algorithm to use.
79 * @param algorithm
80 * the name of algorithm to use.
82 protected Signature(String algorithm) {
83 this.algorithm = algorithm;
88 * algorithm.
90 * @param algorithm
    [all...]
KeyRep.java 39 // Key algorithm name
40 private final String algorithm; field in class:KeyRep
53 * @param algorithm
54 * the algorithm (obtained by {@link Key#getAlgorithm()}).
61 * if {@code type, algorithm, format or encoded} is {@code null}
64 public KeyRep(Type type, String algorithm, String format, byte[] encoded) {
66 this.algorithm = algorithm;
72 if(this.algorithm == null) {
73 throw new NullPointerException("algorithm == null")
    [all...]
  /external/stlport/test/unit/
_template.cpp 2 #include <algorithm>
times_test.cpp 1 #include <algorithm>
modulus_test.cpp 1 #include <algorithm>
  /libcore/luni/src/main/java/javax/crypto/
Mac.java 47 // Store used algorithm name
48 private final String algorithm; field in class:Mac
60 * @param algorithm
61 * the name of the MAC algorithm.
63 protected Mac(MacSpi macSpi, Provider provider, String algorithm) {
65 this.algorithm = algorithm;
71 * Returns the name of the MAC algorithm.
73 * @return the name of the MAC algorithm.
76 return algorithm;
    [all...]
ExemptionMechanism.java 88 * specified exemption mechanism algorithm.
90 * @param algorithm
94 * if the specified algorithm is not available by any provider.
96 * if the algorithm parameter is {@code null}.
98 public static final ExemptionMechanism getInstance(String algorithm)
100 if (algorithm == null) {
104 engine.getInstance(algorithm, null);
106 engine.provider, algorithm);
112 * specified exemption mechanism algorithm from the specified provider.
114 * @param algorithm
    [all...]
  /ndk/sources/android/stlport/test/unit/
_template.cpp 2 #include <algorithm>
times_test.cpp 1 #include <algorithm>
modulus_test.cpp 1 #include <algorithm>
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyMessageDigest1.java 44 * @param algorithm
46 public MyMessageDigest1(String algorithm) {
47 super(algorithm);
MyKeyPairGenerator1.java 95 private String algorithm; field in class:MyKeyPairGenerator1.PubKey
102 this.algorithm = "MyKeyPairGenerator1";
108 return algorithm;
121 private String algorithm; field in class:MyKeyPairGenerator1.PrivKey
128 this.algorithm = "MyKeyPairGenerator1";
134 return algorithm;
SpiEngUtils.java 41 * Verification: is algorithm supported or not
43 * @param algorithm
47 public static Provider isSupport(String algorithm, String service) {
50 .concat(algorithm));
KeyStoreTestSupport.java 90 private String algorithm; field in class:KeyStoreTestSupport.MyPrivateKey
96 public MyPrivateKey(String algorithm, String format, byte[] encoded) {
97 this.algorithm = algorithm;
103 return algorithm;
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 28 * Holds the standard name of the hashing algorithm, e.g. "SHA-1";
30 private final String algorithm; field in class:OpenSSLDigest
33 * Holds the OpenSSL name of the hashing algorithm, e.g. "sha1";
48 * Creates a new OpenSSLMessageDigest instance for the given algorithm
51 * @param algorithm The standard name of the algorithm, e.g. "SHA-1".
52 * @param algorithm The name of the openssl algorithm, e.g. "sha1".
54 private OpenSSLDigest(String algorithm, String openssl) {
55 this.algorithm = algorithm
    [all...]
  /external/chromium/net/third_party/nss/ssl/
nsskea.c 2 * Return SSLKEAType derived from cert's Public Key algorithm info.
54 tag = SECOID_GetAlgorithmTag(&(cert->subjectPublicKeyInfo.algorithm));
  /external/stlport/stlport/
algorithm 47 # include_next <algorithm>
49 # include _STLP_NATIVE_HEADER(algorithm)
  /ndk/sources/android/stlport/stlport/
algorithm 47 # include_next <algorithm>
49 # include _STLP_NATIVE_HEADER(algorithm)
  /external/openssl/crypto/asn1/
x_algor.c 65 ASN1_SIMPLE(X509_ALGOR, algorithm, ASN1_OBJECT),
93 if (alg->algorithm)
94 ASN1_OBJECT_free(alg->algorithm);
95 alg->algorithm = aobj;
116 *paobj = algor->algorithm;
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEPBEKey.java 15 String algorithm; field in class:JCEPBEKey
29 String algorithm,
38 this.algorithm = algorithm;
50 return algorithm;
  /external/webkit/WebCore/platform/graphics/transforms/
Matrix3DTransformOperation.cpp 29 #include <algorithm>
  /packages/apps/CertInstaller/src/com/android/certinstaller/
Util.java 61 MessageDigest algorithm = MessageDigest.getInstance("MD5"); local
62 algorithm.reset();
63 algorithm.update(bytes);
64 return toHexString(algorithm.digest(), "");
  /external/chromium/base/
hmac_mac.cc 45 CCHmacAlgorithm algorithm; local
49 algorithm = kCCHmacAlgSHA1;
62 CCHmac(algorithm,
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLMessageDigestJDK.java 33 * The OpenSSL version of the algorithm name for later use by reset.
43 * Creates a new OpenSSLMessageDigest instance for the given algorithm
46 * @param algorithm The standard name of the algorithm, e.g. "SHA-1".
47 * @param algorithm The name of the openssl algorithm, e.g. "sha1".
49 private OpenSSLMessageDigestJDK(String algorithm, String openssl)
51 super(algorithm);
58 throw new NoSuchAlgorithmException(ex.getMessage() + " (" + algorithm + ")");

Completed in 1669 milliseconds

12 3 4 5 6 7 8 91011>>