Searched refs:ivLength (Results 1 - 8 of 8) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseStreamCipher.java51 private int ivLength = 0; field in class:BaseStreamCipher
58 int ivLength)
61 this.ivLength = ivLength;
66 int ivLength)
68 this.ivLength = ivLength;
212 if ((ivLength != 0) && !(param instanceof ParametersWithIV))
223 byte[] iv = new byte[ivLength];
56 BaseStreamCipher( StreamCipher engine, int ivLength) argument
64 BaseStreamCipher( BlockCipher engine, int ivLength) argument
H A DBaseBlockCipher.java106 private int ivLength = 0; field in class:BaseBlockCipher
150 ivLength = baseEngine.getBlockSize();
156 int ivLength)
161 this.ivLength = ivLength / 8;
166 int ivLength)
171 this.ivLength = ivLength / 8;
261 ivLength = 0;
266 ivLength
154 BaseBlockCipher( org.bouncycastle.crypto.BlockCipher engine, int ivLength) argument
164 BaseBlockCipher( BufferedBlockCipher engine, int ivLength) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEStreamCipher.java75 private int ivLength = 0; field in class:JCEStreamCipher
84 int ivLength)
87 this.ivLength = ivLength;
92 int ivLength)
94 this.ivLength = ivLength;
238 if ((ivLength != 0) && !(param instanceof ParametersWithIV))
249 byte[] iv = new byte[ivLength];
82 JCEStreamCipher( StreamCipher engine, int ivLength) argument
90 JCEStreamCipher( BlockCipher engine, int ivLength) argument
/external/chromium_org/third_party/tlslite/tlslite/
H A Dtlsrecordlayer.py1061 ivLength = 16
1065 ivLength = 16
1069 ivLength = 0
1073 ivLength = 8
1090 outputLength = (macLength*2) + (keyLength*2) + (ivLength*2)
1113 clientIVBlock = p.getFixBytes(ivLength)
1114 serverIVBlock = p.getFixBytes(ivLength)
1134 if self.version == (3,2) and ivLength:
1137 self.fixedIVBlock = getRandomBytes(ivLength)
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLCipher.java271 final int ivLength = NativeCrypto.EVP_CIPHER_iv_length(cipherType);
272 if (iv == null && ivLength != 0) {
273 iv = new byte[ivLength];
280 } else if (iv != null && iv.length != ivLength) {
281 throw new InvalidAlgorithmParameterException("expected IV length of " + ivLength);
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DNormalizeAlgorithm.cpp583 unsigned ivLength = iv->byteLength(); local
588 params = adoptPtr(new WebCryptoAesGcmParams(ivStart, ivLength, hasAdditionalData, additionalDataStart, additionalDataLength, hasTagLength, tagLength));
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp4502 const int ivLength = EVP_CIPHER_iv_length(evpCipher); local
4503 JNI_TRACE("EVP_CIPHER_iv_length(%p) => %d", evpCipher, ivLength);
4504 return ivLength;
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 199 milliseconds