Home
last modified time | relevance | path

Searched refs:bulkCipher (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/ssl/
DCipherBox.java145 private CipherBox(ProtocolVersion protocolVersion, BulkCipher bulkCipher, in CipherBox() argument
150 this.cipher = JsseJce.getCipher(bulkCipher.transformation); in CipherBox()
157 this.isCBCMode = bulkCipher.isCBCMode; in CipherBox()
169 if (iv == null && bulkCipher.ivSize != 0 && in CipherBox()
172 iv = getFixedMask(bulkCipher.ivSize); in CipherBox()
188 ("Could not create cipher " + bulkCipher, e); in CipherBox()
191 ("Could not create cipher " + bulkCipher, e); in CipherBox()
DSSLAlgorithmConstraints.java358 protected Set<String> decomposes(BulkCipher bulkCipher) { in decomposes() argument
361 if (bulkCipher.transformation != null) { in decomposes()
362 components.addAll(super.decomposes(bulkCipher.transformation)); in decomposes()