Searched refs:CipherBox (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DEngineOutputRecord.java147 void encrypt(CipherBox box, ByteBuffer bb) {
173 void write(MAC writeMAC, CipherBox writeCipher) throws IOException {
209 void write(EngineArgs ea, MAC writeMAC, CipherBox writeCipher)
276 void write(EngineArgs ea, MAC writeMAC, CipherBox writeCipher,
H A DEngineWriter.java103 MAC writeMAC, CipherBox writeCipher) throws IOException {
156 CipherBox writeCipher) throws IOException {
H A DCipherBox.java91 final class CipherBox { class
93 // A CipherBox that implements the identity operation
94 final static CipherBox NULL = new CipherBox();
133 private CipherBox() { method in class:CipherBox
140 * Construct a new CipherBox using the cipher transformation.
145 private CipherBox(ProtocolVersion protocolVersion, BulkCipher bulkCipher, method in class:CipherBox
196 * Factory method to obtain a new CipherBox object.
198 static CipherBox newCipherBox(ProtocolVersion version, BulkCipher cipher,
208 return new CipherBox(versio
[all...]
H A DSSLEngineImpl.java281 private CipherBox readCipher, writeCipher;
372 readCipher = CipherBox.NULL;
374 writeCipher = CipherBox.NULL;
575 CipherBox oldCipher = readCipher;
612 CipherBox oldCipher = writeCipher;
1307 * EngineOutputRecord.write(EngineArgs, MAC, CipherBox).
1309 boolean needToSplitPayload(CipherBox cipher, ProtocolVersion protocol) {
H A DSSLSocketImpl.java301 private CipherBox readCipher, writeCipher;
566 readCipher = CipherBox.NULL;
568 writeCipher = CipherBox.NULL;
2040 CipherBox oldCipher = readCipher;
2072 CipherBox oldCipher = writeCipher;
H A DEngineInputRecord.java189 CipherBox box, ByteBuffer bb) throws BadPaddingException {
208 // Note that the CipherBox.decrypt() does not change
H A DHandshaker.java665 CipherBox newReadCipher() throws NoSuchAlgorithmException {
667 CipherBox box;
685 CipherBox newWriteCipher() throws NoSuchAlgorithmException {
687 CipherBox box;
H A DOutputRecord.java215 void encrypt(CipherBox box) {
H A DInputRecord.java138 void decrypt(MAC signer, CipherBox box) throws BadPaddingException {
152 // Note that the CipherBox.decrypt() does not change
H A DCipherSuite.java389 * Also contains a factory method to obtain in initialized CipherBox
459 * Return an initialized CipherBox for this BulkCipher.
464 CipherBox newCipher(ProtocolVersion version, SecretKey key,
467 return CipherBox.newCipherBox(version, this,

Completed in 44 milliseconds