OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ivLength
(Results
1 - 3
of
3
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java
60
private int
ivLength
= 0;
67
int
ivLength
)
70
this.
ivLength
=
ivLength
;
75
int
ivLength
)
77
this.
ivLength
=
ivLength
;
221
if ((
ivLength
!= 0) && !(param instanceof ParametersWithIV))
232
byte[] iv = new byte[
ivLength
];
JCEBlockCipher.java
95
private int
ivLength
= 0;
114
int
ivLength
)
119
this.
ivLength
=
ivLength
/ 8;
124
int
ivLength
)
129
this.
ivLength
=
ivLength
/ 8;
202
ivLength
= 0;
207
ivLength
= baseEngine.getBlockSize();
213
ivLength
= baseEngine.getBlockSize()
[
all
...]
/external/bouncycastle/src/main/java/org/bouncycastle/openssl/
MiscPEMGenerator.java
303
int
ivLength
= dekAlgName.startsWith("AES-") ? 16 : 8;
305
byte[] iv = new byte[
ivLength
];
Completed in 36 milliseconds