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

1 2 3 4 5

  /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());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/spec/
AEADParameterSpec.java 71 return 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();
DESedeCBCNoPaddingCipherTest.java 19 protected byte[] getIv(AlgorithmParameters params) throws InvalidParameterSpecException {
21 return spec.getIV();
DESedeCBCPKCS7PaddingCipherTest.java 19 protected byte[] getIv(AlgorithmParameters params) throws InvalidParameterSpecException {
21 return spec.getIV();
  /libcore/luni/src/test/java/libcore/javax/crypto/spec/
AlgorithmParametersTestGCM.java 76 assertTrue("Provider: " + p.getName(), Arrays.equals(IV, spec.getIV()));
82 assertTrue("Provider: " + p.getName(), Arrays.equals(IV, spec.getIV()));
AlgorithmParametersTestAES.java 63 params.getParameterSpec(IvParameterSpec.class).getIV()));
AlgorithmParametersTestDES.java 61 params.getParameterSpec(IvParameterSpec.class).getIV()));
AlgorithmParametersTestDESede.java 61 params.getParameterSpec(IvParameterSpec.class).getIV()));
AlgorithmParametersTestPBES2.java 194 ((IvParameterSpec) TEST_PBE_PARAMETER_SPEC.getParameterSpec()).getIV()),
195 Arrays.toString(((IvParameterSpec) encodedSpec.getParameterSpec()).getIV()));
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLCipherChaCha20.java 54 if (ivParams.getIV().length != NONCE_SIZE_BYTES) {
57 iv = ivParams.getIV();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PKCS12PBEParams.java 55 public byte[] getIV()
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStore3DESCipherSpi.java 185 mIv = ((IvParameterSpec) params).getIV();
229 mIv = ivSpec.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();

Completed in 599 milliseconds

1 2 3 4 5