HomeSort by relevance Sort by last modified time
    Searched full:crypto (Results 51 - 75 of 3078) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chromeos/
DEPS 2 "+crypto",
  /external/chromium_org/components/component_updater/
DEPS 5 "+crypto",
  /external/chromium_org/components/ownership/
DEPS 3 "+crypto",
  /external/chromium_org/components/signin/
DEPS 5 "+crypto",
  /external/chromium_org/crypto/
ec_signature_creator.cc 5 #include "crypto/ec_signature_creator.h"
8 #include "crypto/ec_signature_creator_impl.h"
10 namespace crypto { namespace
34 } // namespace crypto
rsa_private_key_nss_unittest.cc 5 #include "crypto/rsa_private_key.h"
11 #include "crypto/scoped_test_nss_db.h"
14 namespace crypto { namespace
29 scoped_ptr<crypto::RSAPrivateKey> key_pair(RSAPrivateKey::Create(256));
34 scoped_ptr<crypto::RSAPrivateKey> key_pair_2(
35 crypto::RSAPrivateKey::FindFromPublicKeyInfo(public_key));
42 scoped_ptr<crypto::RSAPrivateKey> key_pair(RSAPrivateKey::Create(256));
57 EXPECT_EQ(NULL, crypto::RSAPrivateKey::FindFromPublicKeyInfo(public_key));
60 } // namespace crypto
symmetric_key_unittest.cc 5 #include "crypto/symmetric_key.h"
15 scoped_ptr<crypto::SymmetricKey> key(
16 crypto::SymmetricKey::GenerateRandomKey(crypto::SymmetricKey::AES, 256));
24 scoped_ptr<crypto::SymmetricKey> key2(
25 crypto::SymmetricKey::GenerateRandomKey(crypto::SymmetricKey::AES, 256));
34 scoped_ptr<crypto::SymmetricKey> key1(
35 crypto::SymmetricKey::GenerateRandomKey(crypto::SymmetricKey::AES, 256))
    [all...]
  /external/chromium_org/gpu/
DEPS 7 "+crypto",
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
LIST 1 v8-crypto
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
LIST 1 v8-crypto
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
LIST 1 v8-crypto
  /external/chromium_org/third_party/boringssl/src/crypto/base64/
CMakeLists.txt 17 target_link_libraries(base64_test crypto)
  /external/chromium_org/third_party/boringssl/src/crypto/err/
CMakeLists.txt 18 target_link_libraries(err_test crypto)
  /external/chromium_org/third_party/boringssl/src/crypto/hmac/
CMakeLists.txt 18 target_link_libraries(hmac_test crypto)
  /external/chromium_org/third_party/boringssl/src/crypto/lhash/
CMakeLists.txt 17 target_link_libraries(lhash_test crypto)
  /external/chromium_org/third_party/boringssl/src/ssl/pqueue/
CMakeLists.txt 17 target_link_libraries(pqueue_test ssl crypto)
  /external/chromium_org/third_party/boringssl/src/ssl/test/
CMakeLists.txt 12 target_link_libraries(bssl_shim ssl crypto)
  /frameworks/av/media/ndk/
NdkMediaCrypto.cpp 60 sp<ICrypto> crypto = service->makeCrypto(); local
62 if (crypto == NULL || (crypto->initCheck() != OK && crypto->initCheck() != NO_INIT)) {
66 return crypto;
79 sp<ICrypto> crypto = makeCrypto(); local
80 if (crypto == NULL) {
83 return crypto->isCryptoSchemeSupported(uuid);
88 sp<ICrypto> crypto = makeCrypto(); local
89 if (crypto == NULL)
107 AMediaCrypto *crypto = new AMediaCrypto(); local
    [all...]
  /external/bouncycastle/
bouncycastle.config 20 org/bouncycastle/crypto/agreement/jpake \
21 org/bouncycastle/crypto/agreement/kdf \
22 org/bouncycastle/crypto/agreement/srp \
23 org/bouncycastle/crypto/commitments \
24 org/bouncycastle/crypto/ec \
25 org/bouncycastle/crypto/examples \
26 org/bouncycastle/crypto/kems \
27 org/bouncycastle/crypto/prng \
28 org/bouncycastle/crypto/tls/ \
154 org/bouncycastle/crypto/BufferedAsymmetricBlockCipher.java
    [all...]
  /external/srtp/
Makefile 10 # libcrypt.a static library implementing crypto engine
22 crypto/test/cipher_driver$(EXE) -v >/dev/null
23 crypto/test/kernel_driver$(EXE) -v >/dev/null
29 $(MAKE) -C crypto runtest
34 INCDIR = -Icrypto/include -I$(srcdir)/include -I$(srcdir)/crypto/include
74 # libcrypt.a (the crypto engine)
75 ciphers = crypto/cipher/cipher.o crypto/cipher/null_cipher.o \
76 crypto/cipher/aes.o crypto/cipher/aes_icm.o
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
RuntimeCryptoException.java 1 package org.bouncycastle.crypto;
4 * the foundation class for the exceptions thrown by the crypto packages.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/agreement/
DHBasicAgreement.java 1 package org.bouncycastle.crypto.agreement;
5 import org.bouncycastle.crypto.BasicAgreement;
6 import org.bouncycastle.crypto.CipherParameters;
7 import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
8 import org.bouncycastle.crypto.params.DHParameters;
9 import org.bouncycastle.crypto.params.DHPrivateKeyParameters;
10 import org.bouncycastle.crypto.params.DHPublicKeyParameters;
11 import org.bouncycastle.crypto.params.ParametersWithRandom;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DHBasicKeyPairGenerator.java 1 package org.bouncycastle.crypto.generators;
3 import org.bouncycastle.crypto.AsymmetricCipherKeyPair;
4 import org.bouncycastle.crypto.AsymmetricCipherKeyPairGenerator;
5 import org.bouncycastle.crypto.KeyGenerationParameters;
6 import org.bouncycastle.crypto.params.DHKeyGenerationParameters;
7 import org.bouncycastle.crypto.params.DHParameters;
8 import org.bouncycastle.crypto.params.DHPrivateKeyParameters;
9 import org.bouncycastle.crypto.params.DHPublicKeyParameters;
ECKeyPairGenerator.java 1 package org.bouncycastle.crypto.generators;
6 import org.bouncycastle.crypto.AsymmetricCipherKeyPair;
7 import org.bouncycastle.crypto.AsymmetricCipherKeyPairGenerator;
8 import org.bouncycastle.crypto.KeyGenerationParameters;
9 import org.bouncycastle.crypto.params.ECDomainParameters;
10 import org.bouncycastle.crypto.params.ECKeyGenerationParameters;
11 import org.bouncycastle.crypto.params.ECPrivateKeyParameters;
12 import org.bouncycastle.crypto.params.ECPublicKeyParameters;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DSAKeyGenerationParameters.java 1 package org.bouncycastle.crypto.params;
5 import org.bouncycastle.crypto.KeyGenerationParameters;

Completed in 1274 milliseconds

1 23 4 5 6 7 8 91011>>