OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ivLength
(Results
1 - 7
of
7
) sorted by null
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseStreamCipher.java
51
private int
ivLength
= 0;
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
];
BaseBlockCipher.java
106
private int
ivLength
= 0;
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
= 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/WebKit/Source/modules/crypto/
NormalizeAlgorithm.cpp
583
unsigned
ivLength
= iv->byteLength();
588
params = adoptPtr(new WebCryptoAesGcmParams(ivStart,
ivLength
, hasAdditionalData, additionalDataStart, additionalDataLength, hasTagLength, tagLength));
/external/conscrypt/src/main/java/org/conscrypt/
OpenSSLCipher.java
271
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/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp
[
all
...]
/external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar
Completed in 2195 milliseconds