Searched defs:crypto (Results 251 - 275 of 332) sorted by relevance

<<11121314

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DBufferedBlockCipher.java1 package org.bouncycastle.crypto;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DGeneralDigest.java1 package org.bouncycastle.crypto.digests;
3 import org.bouncycastle.crypto.ExtendedDigest;
H A DOpenSSLDigest.java17 package org.bouncycastle.crypto.digests;
19 import org.bouncycastle.crypto.ExtendedDigest;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
H A DPKCS1Encoding.java1 package org.bouncycastle.crypto.encodings;
7 import org.bouncycastle.crypto.AsymmetricBlockCipher;
8 import org.bouncycastle.crypto.CipherParameters;
9 import org.bouncycastle.crypto.InvalidCipherTextException;
10 import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
11 import org.bouncycastle.crypto.params.ParametersWithRandom;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DDESedeEngine.java1 package org.bouncycastle.crypto.engines;
3 import org.bouncycastle.crypto.CipherParameters;
4 import org.bouncycastle.crypto.DataLengthException;
5 import org.bouncycastle.crypto.OutputLengthException;
6 import org.bouncycastle.crypto.params.KeyParameter;
H A DDESedeWrapEngine.java1 package org.bouncycastle.crypto.engines;
5 import org.bouncycastle.crypto.CipherParameters;
6 import org.bouncycastle.crypto.Digest;
7 import org.bouncycastle.crypto.InvalidCipherTextException;
8 import org.bouncycastle.crypto.Wrapper;
10 import org.bouncycastle.crypto.digests.AndroidDigestFactory;
12 import org.bouncycastle.crypto.modes.CBCBlockCipher;
13 import org.bouncycastle.crypto.params.KeyParameter;
14 import org.bouncycastle.crypto.params.ParametersWithIV;
15 import org.bouncycastle.crypto
[all...]
H A DRC2Engine.java1 package org.bouncycastle.crypto.engines;
3 import org.bouncycastle.crypto.BlockCipher;
4 import org.bouncycastle.crypto.CipherParameters;
5 import org.bouncycastle.crypto.DataLengthException;
6 import org.bouncycastle.crypto.OutputLengthException;
7 import org.bouncycastle.crypto.params.KeyParameter;
8 import org.bouncycastle.crypto.params.RC2Parameters;
H A DRC4Engine.java1 package org.bouncycastle.crypto.engines;
3 import org.bouncycastle.crypto.CipherParameters;
4 import org.bouncycastle.crypto.DataLengthException;
5 import org.bouncycastle.crypto.OutputLengthException;
6 import org.bouncycastle.crypto.StreamCipher;
7 import org.bouncycastle.crypto.params.KeyParameter;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DPKCS12ParametersGenerator.java1 package org.bouncycastle.crypto.generators;
3 import org.bouncycastle.crypto.CipherParameters;
4 import org.bouncycastle.crypto.Digest;
5 import org.bouncycastle.crypto.ExtendedDigest;
6 import org.bouncycastle.crypto.PBEParametersGenerator;
7 import org.bouncycastle.crypto.params.KeyParameter;
8 import org.bouncycastle.crypto.params.ParametersWithIV;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
H A DCBCBlockCipherMac.java1 package org.bouncycastle.crypto.macs;
3 import org.bouncycastle.crypto.BlockCipher;
4 import org.bouncycastle.crypto.CipherParameters;
5 import org.bouncycastle.crypto.Mac;
6 import org.bouncycastle.crypto.modes.CBCBlockCipher;
7 import org.bouncycastle.crypto.paddings.BlockCipherPadding;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DAEADBlockCipher.java1 package org.bouncycastle.crypto.modes;
3 import org.bouncycastle.crypto.BlockCipher;
4 import org.bouncycastle.crypto.CipherParameters;
5 import org.bouncycastle.crypto.DataLengthException;
6 import org.bouncycastle.crypto.InvalidCipherTextException;
10 * @see org.bouncycastle.crypto.params.AEADParameters
89 * @throws org.bouncycastle.crypto.InvalidCipherTextException if the MAC fails to match.
H A DCBCBlockCipher.java1 package org.bouncycastle.crypto.modes;
3 import org.bouncycastle.crypto.BlockCipher;
4 import org.bouncycastle.crypto.CipherParameters;
5 import org.bouncycastle.crypto.DataLengthException;
6 import org.bouncycastle.crypto.params.ParametersWithIV;
H A DCFBBlockCipher.java1 package org.bouncycastle.crypto.modes;
3 import org.bouncycastle.crypto.BlockCipher;
4 import org.bouncycastle.crypto.CipherParameters;
5 import org.bouncycastle.crypto.DataLengthException;
6 import org.bouncycastle.crypto.params.ParametersWithIV;
H A DOFBBlockCipher.java1 package org.bouncycastle.crypto.modes;
3 import org.bouncycastle.crypto.BlockCipher;
4 import org.bouncycastle.crypto.CipherParameters;
5 import org.bouncycastle.crypto.DataLengthException;
6 import org.bouncycastle.crypto.params.ParametersWithIV;
H A DSICBlockCipher.java1 package org.bouncycastle.crypto.modes;
3 import org.bouncycastle.crypto.BlockCipher;
4 import org.bouncycastle.crypto.CipherParameters;
5 import org.bouncycastle.crypto.DataLengthException;
6 import org.bouncycastle.crypto.params.ParametersWithIV;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHParameters.java1 package org.bouncycastle.crypto.params;
5 import org.bouncycastle.crypto.CipherParameters;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DRSADigestSigner.java1 package org.bouncycastle.crypto.signers;
15 import org.bouncycastle.crypto.AsymmetricBlockCipher;
16 import org.bouncycastle.crypto.CipherParameters;
17 import org.bouncycastle.crypto.CryptoException;
18 import org.bouncycastle.crypto.DataLengthException;
19 import org.bouncycastle.crypto.Digest;
20 import org.bouncycastle.crypto.Signer;
21 import org.bouncycastle.crypto.encodings.PKCS1Encoding;
22 import org.bouncycastle.crypto.engines.RSABlindedEngine;
23 import org.bouncycastle.crypto
[all...]
/external/chromium_org/content/browser/download/
H A Dbase_file.h19 #include "crypto/sha2.h"
24 namespace crypto { namespace
104 // a string of size crypto::kSHA256Length that contains only zeros (initial
147 static const unsigned char kEmptySha256Hash[crypto::kSHA256Length];
174 scoped_ptr<crypto::SecureHash> secure_hash_;
176 unsigned char sha256_hash_[crypto::kSHA256Length];
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/crypto/
H A DCipherFactoryTest.java5 package org.chromium.content.browser.crypto;
14 import javax.crypto.Cipher;
/external/chromium_org/crypto/
H A Dec_signature_creator_nss.cc5 #include "crypto/ec_signature_creator_impl.h"
16 #include "crypto/ec_private_key.h"
17 #include "crypto/nss_util.h"
18 #include "crypto/scoped_nss_types.h"
20 namespace crypto { namespace
114 } // namespace crypto
H A Dec_signature_creator_openssl.cc5 #include "crypto/ec_signature_creator_impl.h"
14 #include "crypto/ec_private_key.h"
15 #include "crypto/openssl_util.h"
16 #include "crypto/scoped_openssl_types.h"
18 namespace crypto { namespace
91 } // namespace crypto
H A Dencryptor.cc5 #include "crypto/encryptor.h"
10 namespace crypto { namespace
97 } // namespace crypto
H A Dencryptor_nss.cc5 #include "crypto/encryptor.h"
11 #include "crypto/nss_util.h"
12 #include "crypto/symmetric_key.h"
14 namespace crypto { namespace
202 } // namespace crypto
H A Dopenssl_util.cc5 #include "crypto/openssl_util.h"
23 namespace crypto { namespace
130 } // namespace crypto
H A Dp224_spake.h9 #include <crypto/p224.h>
10 #include <crypto/sha2.h>
12 namespace crypto { namespace
112 } // namespace crypto

Completed in 3150 milliseconds

<<11121314