HomeSort by relevance Sort by last modified time
    Searched refs:getIV (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/conscrypt/src/main/java/org/conscrypt/
GCMParameters.java 46 public byte[] getIV() {
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
IvParameterSpecTest.java 56 + "the change of internal array", iv[0] == ivps.getIV()[0]);
115 + "the change of internal array", iv[0] == ivps.getIV()[0]);
129 iv = ivps.getIV();
132 + "the change of internal array", iv[0] == ivps.getIV()[0]);
RC2ParameterSpecTest.java 66 iv[0] == ps.getIV()[0]);
98 iv[offset] == ps.getIV()[0]);
116 * getIV() method testing. Tests that returned array is equal to the
119 * that getIV() method returns null if iv is not specified.
126 byte[] result = ps.getIV();
132 assertFalse("The change of returned by getIV() method iv "
134 result[0] == ps.getIV()[0]);
136 assertNull("The getIV() method should return null if the parameter "
137 + "set does not contain iv.", ps.getIV());
RC5ParameterSpecTest.java 75 iv[0] == ps.getIV()[0]);
125 iv[offset] == ps.getIV()[0]);
182 * getIV() method testing. Tests that returned array is equal to the
185 * that getIV() method returns null if iv is not specified.
195 byte[] result = ps.getIV();
201 assertFalse("The change of returned by getIV() method iv "
203 result[0] == ps.getIV()[0]);
205 assertNull("The getIV() method should return null if the parameter "
206 + "set does not contain IV.", ps.getIV());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
KDFParameters.java 27 public byte[] getIV()
ParametersWithIV.java 30 public byte[] getIV()
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
IvParameterSpecTest.java 56 + "the change of internal array", iv[0] == ivps.getIV()[0]);
115 + "the change of internal array", iv[0] == ivps.getIV()[0]);
129 iv = ivps.getIV();
132 + "the change of internal array", iv[0] == ivps.getIV()[0]);
GCMParameterSpecTest.java 79 byte[] actual = spec.getIV();
88 Arrays.equals(spec.getIV(), actual));
89 assertEquals(Arrays.toString(TEST_IV), Arrays.toString(spec.getIV()));
95 Arrays.toString(spec.getIV()));
RC2ParameterSpecTest.java 66 iv[0] == ps.getIV()[0]);
98 iv[offset] == ps.getIV()[0]);
116 * getIV() method testing. Tests that returned array is equal to the
119 * that getIV() method returns null if iv is not specified.
126 byte[] result = ps.getIV();
132 assertFalse("The change of returned by getIV() method iv "
134 result[0] == ps.getIV()[0]);
136 assertNull("The getIV() method should return null if the parameter "
137 + "set does not contain iv.", ps.getIV());
RC5ParameterSpecTest.java 75 iv[0] == ps.getIV()[0]);
125 iv[offset] == ps.getIV()[0]);
182 * getIV() method testing. Tests that returned array is equal to the
185 * that getIV() method returns null if iv is not specified.
195 byte[] result = ps.getIV();
201 assertFalse("The change of returned by getIV() method iv "
203 result[0] == ps.getIV()[0]);
205 assertNull("The getIV() method should return null if the parameter "
206 + "set does not contain IV.", ps.getIV());
  /libcore/ojluni/src/main/java/javax/crypto/spec/
IvParameterSpec.java 96 public byte[] getIV() {
GCMParameterSpec.java 146 public byte[] getIV() {
RC2ParameterSpec.java 119 public byte[] getIV() {
RC5ParameterSpec.java 159 public byte[] getIV() {
  /cts/tests/tests/keystore/src/android/keystore/cts/
AESCBCCipherTestBase.java 53 protected byte[] getIv(AlgorithmParameters params) throws InvalidParameterSpecException {
55 return spec.getIV();
AESCTRCipherTestBase.java 53 protected byte[] getIv(AlgorithmParameters params) throws InvalidParameterSpecException {
55 return spec.getIV();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PKCS12PBEParams.java 55 public byte[] getIV()
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
Cipher_Impl1Test.java 46 * @tests javax.crypto.Cipher#getIV()
67 byte[] cipherIV = cipher.getIV();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
PBEPKCS12.java 57 return new PBEParameterSpec(params.getIV(),
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
IvAlgorithmParameters.java 63 this.iv = ((IvParameterSpec)paramSpec).getIV();
BaseStreamCipher.java 83 return (ivParam != null) ? ivParam.getIV() : null;
222 param = new ParametersWithIV(new KeyParameter(key.getEncoded()), ((IvParameterSpec)params).getIV());
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherSymmetricKeyThread.java 59 iv = cip.getIV();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CBCBlockCipher.java 71 byte[] iv = ivParam.getIV();
OFBBlockCipher.java 63 byte[] iv = ivParam.getIV();
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreUnauthenticatedAESCipherSpi.java 174 mIv = ((IvParameterSpec) params).getIV();
218 mIv = ivSpec.getIV();

Completed in 645 milliseconds

1 2 3