HomeSort by relevance Sort by last modified time
    Searched refs:ivLength (Results 1 - 9 of 9) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseStreamCipher.java 50 private int ivLength = 0;
57 int ivLength)
60 this.ivLength = ivLength;
65 int ivLength)
67 this.ivLength = ivLength;
211 if ((ivLength != 0) && !(param instanceof ParametersWithIV))
222 byte[] iv = new byte[ivLength];
BaseBlockCipher.java 99 private int ivLength = 0;
127 int ivLength)
132 this.ivLength = ivLength / 8;
137 int ivLength)
142 this.ivLength = ivLength / 8;
215 ivLength = 0;
220 ivLength = baseEngine.getBlockSize();
226 ivLength = baseEngine.getBlockSize()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java 75 private int ivLength = 0;
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];
  /external/chromium_org/third_party/tlslite/tlslite/
TLSRecordLayer.py     [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLCipher.java 265 final int ivLength = NativeCrypto.EVP_CIPHER_iv_length(cipherType);
266 if (iv == null && ivLength != 0) {
267 iv = new byte[ivLength];
274 } else if (iv != null && iv.length != ivLength) {
275 throw new InvalidAlgorithmParameterException("expected IV length of " + ivLength);
  /libcore/crypto/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 631 milliseconds