HomeSort by relevance Sort by last modified time
    Searched refs:algorithm (Results 226 - 250 of 3728) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509Util.java 199 String algorithm)
202 return Signature.getInstance(algorithm);
206 String algorithm,
212 return Signature.getInstance(algorithm, provider);
216 return Signature.getInstance(algorithm);
232 throw new IllegalStateException("no signature algorithm specified");
264 throw new IllegalStateException("no signature algorithm specified");
321 * see if we can find an algorithm (or its alias and what it represents) in
326 String algorithm,
330 algorithm = Strings.toUpperCase(algorithm)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyFactorySpi.java 30 String algorithm; field in class:KeyFactorySpi
34 String algorithm,
37 this.algorithm = algorithm;
130 return new BCECPrivateKey(algorithm, (ECPrivateKeySpec)keySpec, configuration);
134 return new BCECPrivateKey(algorithm, (java.security.spec.ECPrivateKeySpec)keySpec, configuration);
146 return new BCECPublicKey(algorithm, (ECPublicKeySpec)keySpec, configuration);
150 return new BCECPublicKey(algorithm, (java.security.spec.ECPublicKeySpec)keySpec, configuration);
163 return new BCECPrivateKey(algorithm, keyInfo, configuration);
167 throw new IOException("algorithm identifier " + algOid + " in key not recognised")
    [all...]
KeyPairGeneratorSpi.java 49 String algorithm; field in class:KeyPairGeneratorSpi.EC
69 this.algorithm = "EC";
74 String algorithm,
77 super(algorithm);
78 this.algorithm = algorithm;
231 BCECPublicKey pubKey = new BCECPublicKey(algorithm, pub, p, configuration);
233 new BCECPrivateKey(algorithm, priv, pubKey, p, configuration));
237 return new KeyPair(new BCECPublicKey(algorithm, pub, configuration),
238 new BCECPrivateKey(algorithm, priv, configuration))
    [all...]
  /external/chromium_org/content/child/webcrypto/nss/
rsa_oaep_nss.cc 36 const blink::WebCryptoAlgorithm& algorithm) {
37 switch (algorithm.id()) {
52 const blink::WebCryptoAlgorithm& algorithm) {
53 switch (algorithm.id()) {
63 // Not a supported algorithm.
208 virtual Status Encrypt(const blink::WebCryptoAlgorithm& algorithm,
217 key.algorithm().rsaHashedParams()->hash(),
218 CryptoData(algorithm.rsaOaepParams()->optionalLabel()),
223 virtual Status Decrypt(const blink::WebCryptoAlgorithm& algorithm,
232 key.algorithm().rsaHashedParams()->hash()
    [all...]
aes_gcm_nss.cc 58 const blink::WebCryptoAlgorithm& algorithm,
67 const blink::WebCryptoAesGcmParams* params = algorithm.aesGcmParams();
165 virtual Status Encrypt(const blink::WebCryptoAlgorithm& algorithm,
169 return AesGcmEncryptDecrypt(ENCRYPT, algorithm, key, data, buffer);
172 virtual Status Decrypt(const blink::WebCryptoAlgorithm& algorithm,
176 return AesGcmEncryptDecrypt(DECRYPT, algorithm, key, data, buffer);
rsa_ssa_nss.cc 44 virtual Status Sign(const blink::WebCryptoAlgorithm& algorithm,
54 key.algorithm().rsaHashedParams()->hash();
56 // Pick the NSS signing algorithm by combining RSA-SSA (RSA PKCS1) and the
57 // inner hash of the input Web Crypto algorithm.
90 virtual Status Verify(const blink::WebCryptoAlgorithm& algorithm,
101 key.algorithm().rsaHashedParams()->hash();
  /libcore/luni/src/test/java/libcore/java/security/
KeyPairGeneratorTest.java 122 String algorithm = service.getAlgorithm(); local
131 if ("DH".equals(algorithm)) {
137 KeyPairGenerator kpg1 = KeyPairGenerator.getInstance(algorithm);
138 assertEquals(algorithm, kpg1.getAlgorithm());
145 KeyPairGenerator kpg2 = KeyPairGenerator.getInstance(algorithm, provider);
146 assertEquals(algorithm, kpg2.getAlgorithm());
154 KeyPairGenerator kpg3 = KeyPairGenerator.getInstance(algorithm,
156 assertEquals(algorithm, kpg3.getAlgorithm());
163 throw new Exception("Problem testing KeyPairGenerator." + algorithm, e);
170 private static void putKeySize(String algorithm, int keySize)
218 String algorithm = kpg.getAlgorithm(); local
    [all...]
  /external/chromium_org/crypto/
signature_verifier_openssl.cc 53 ScopedOpenSSL<X509_ALGOR, X509_ALGOR_free>::Type algorithm(
55 if (!algorithm.get())
57 int nid = OBJ_obj2nid(algorithm.get()->algorithm);
66 digest = EVP_get_digestbyobj(algorithm.get()->algorithm);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
sequence.hpp 14 #include <boost/algorithm/string/config.hpp>
20 #include <boost/algorithm/string/sequence_traits.hpp>
23 namespace algorithm { namespace in namespace:boost
44 ::boost::algorithm::detail::insert( Input, At, ::boost::begin(Insert), ::boost::end(Insert) );
187 ::boost::algorithm::detail::replace( Input, From, To, ::boost::begin(Insert), ::boost::end(Insert) );
191 ::boost::algorithm::detail::insert( Input, From, ::boost::begin(Insert), ::boost::end(Insert) );
196 } // namespace algorithm
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
JcaDigestCalculatorProviderBuilder.java 44 public DigestCalculator get(final AlgorithmIdentifier algorithm)
51 MessageDigest dig = helper.createDigest(algorithm);
64 return algorithm;
  /external/chromium_org/third_party/webrtc/base/
opensslidentity.h 79 // Compute the digest of the certificate given algorithm
80 virtual bool ComputeDigest(const std::string& algorithm,
87 const std::string& algorithm,
92 virtual bool GetSignatureDigestAlgorithm(std::string* algorithm) const;
sslidentity.h 16 #include <algorithm>
62 // Gets the name of the digest algorithm that was used to compute this
64 virtual bool GetSignatureDigestAlgorithm(std::string* algorithm) const = 0;
66 // Compute the digest of the certificate given algorithm
67 virtual bool ComputeDigest(const std::string& algorithm,
  /external/ceres-solver/internal/ceres/
stl_util.h 34 #include <algorithm>
43 // requires us to pull in all of algorithm.h, which seems expensive.
  /external/chromium_org/base/debug/
stack_trace.cc 11 #include <algorithm>
  /external/chromium_org/base/
rand_util_win.cc 16 #include <algorithm>
  /external/chromium_org/chrome/browser/extensions/api/i18n/
i18n_api.cc 7 #include <algorithm>
  /external/chromium_org/chrome/browser/status_icons/
status_tray.cc 7 #include <algorithm>
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
callback_tracker.cc 7 #include <algorithm>
  /external/chromium_org/content/browser/indexed_db/
indexed_db_value.h 8 #include <algorithm>
  /external/chromium_org/content/browser/vibration/
vibration_provider_android.cc 7 #include <algorithm>
  /external/chromium_org/content/child/webcrypto/openssl/
sha_openssl.cc 114 virtual Status Digest(const blink::WebCryptoAlgorithm& algorithm,
117 DigestorOpenSsl digestor(algorithm.id());
134 blink::WebCryptoAlgorithmId algorithm) {
135 return scoped_ptr<blink::WebCryptoDigestor>(new DigestorOpenSsl(algorithm));
  /external/chromium_org/content/shell/renderer/test_runner/
web_task.cc 7 #include <algorithm>
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_validation.h 10 #include <algorithm>
  /external/chromium_org/media/cast/test/utility/
test_util.cc 7 #include <algorithm>
  /external/chromium_org/mojo/public/cpp/bindings/lib/
fixed_buffer.cc 9 #include <algorithm>

Completed in 2036 milliseconds

1 2 3 4 5 6 7 8 91011>>