Searched refs:ivLength (Results 1 – 4 of 4) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/ |
D | BaseBlockCipher.java | 121 private int ivLength = 0; field in BaseBlockCipher 157 int ivLength) in BaseBlockCipher() argument 164 this.ivLength = ivLength; in BaseBlockCipher() 182 this.ivLength = baseEngine.getBlockSize(); in BaseBlockCipher() 189 int ivLength) in BaseBlockCipher() argument 193 this.ivLength = ivLength; in BaseBlockCipher() 199 int ivLength) in BaseBlockCipher() argument 204 this.ivLength = ivLength / 8; in BaseBlockCipher() 209 int ivLength) in BaseBlockCipher() argument 214 this.ivLength = ivLength / 8; in BaseBlockCipher() [all …]
|
D | BaseStreamCipher.java | 53 private int ivLength = 0; field in BaseStreamCipher 60 int ivLength) in BaseStreamCipher() argument 62 this(engine, ivLength, -1, -1); in BaseStreamCipher() 67 int ivLength, in BaseStreamCipher() argument 72 this.ivLength = ivLength; in BaseStreamCipher() 179 …E.Util.makePBEParameters(k.getEncoded(), PKCS12, digest, keySizeInBits, ivLength * 8, pbeSpec, cip… in engineInit() 232 if ((ivLength != 0) && !(param instanceof ParametersWithIV)) in engineInit() 243 byte[] iv = new byte[ivLength]; in engineInit()
|
/external/bouncycastle/patches/ |
D | bcprov.patch | 6953 - ivLength = baseEngine.getBlockSize(); 6959 - ivLength = 0; 6965 - ivLength = baseEngine.getBlockSize(); 6966 - if (ivLength < 16) 6978 + // ivLength = baseEngine.getBlockSize(); 6984 + // ivLength = 0; 6990 + // ivLength = baseEngine.getBlockSize(); 6991 + // if (ivLength < 16) 7001 ivLength = baseEngine.getBlockSize(); 7007 - ivLength = baseEngine.getBlockSize(); [all …]
|
/external/conscrypt/common/src/jni/main/cpp/ |
D | NativeCrypto.cpp | 3066 jint ivLength = static_cast<jint>(EVP_CIPHER_iv_length(evpCipher)); in NativeCrypto_EVP_CIPHER_iv_length() local 3067 JNI_TRACE("EVP_CIPHER_iv_length(%p) => %d", evpCipher, ivLength); in NativeCrypto_EVP_CIPHER_iv_length() 3068 return ivLength; in NativeCrypto_EVP_CIPHER_iv_length()
|