Searched defs:unwrap (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/java/sql/
H A DWrapper.java39 <T> T unwrap(Class<T> iface) throws SQLException; method in interface:Wrapper
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DClientHandshakeImpl.java146 public void unwrap(byte[] bytes) { method in class:ClientHandshakeImpl
H A DServerHandshakeImpl.java94 public void unwrap(byte[] bytes) { method in class:ServerHandshakeImpl
208 preMasterSecret = c.unwrap(clientKeyExchange.exchange_keys,
H A DSSLRecordProtocol.java327 protected int unwrap() throws IOException { method in class:SSLRecordProtocol
329 logger.println("SSLRecordProtocol.unwrap: BEGIN [");
346 "SSLRecordProtocol:unwrap ] END, SSLv2 type");
408 handshakeProtocol.unwrap(fragment);
413 "TLSCiphertext.unwrap: APP DATA["+length+"]:");
425 logger.println("SSLRecordProtocol:unwrap ] END, type: " + type);
H A DHandshakeProtocol.java254 public abstract void unwrap(byte[] bytes); method in class:HandshakeProtocol
H A DSSLEngineImpl.java404 * @see javax.net.ssl.SSLEngine#unwrap(ByteBuffer,ByteBuffer[],int,int)
408 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, method in class:SSLEngineImpl
461 // unwrap the record contained in source buffer, pass it
464 int type = recordProtocol.unwrap();
/libcore/luni/src/main/java/javax/crypto/
H A DCipher.java1293 * the wrapped key to unwrap.
1310 public final Key unwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, method in class:Cipher
/libcore/luni/src/main/java/javax/net/ssl/
H A DSSLEngine.java78 * called by {@code wrap} or {@code unwrap} if the initial handshake has not
325 public abstract SSLEngineResult unwrap(ByteBuffer src, method in class:SSLEngine
382 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer dst) throws SSLException { method in class:SSLEngine
383 return unwrap(src, new ByteBuffer[] { dst }, 0, 1);
407 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException { method in class:SSLEngine
411 return unwrap(src, dsts, 0, dsts.length);
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMySSLContextSpi.java148 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, method in class:MySSLContextSpi.tmpSSLEngine
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DMySSLContextSpi.java146 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, method in class:MySSLContextSpi.tmpSSLEngine

Completed in 300 milliseconds