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

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

Completed in 44 milliseconds