Searched refs:unwrap (Results 1 - 25 of 160) sorted by relevance

1234567

/openjdk10/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/digest/
H A DSecurityCtx.java55 byte[] unwrap(byte[] outgoing, int start, int len) method in interface:SecurityCtx
/openjdk10/langtools/test/tools/javac/lambda/methodReference/
H A DMethodRefNewInnerInLambdaNPE2.java51 return arg.unwrap();
55 Constructor unwrap(); method in interface:MethodRefNewInnerInLambdaNPE2.Wrapper
/openjdk10/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java57 static Path unwrap(Path wrapper) { method in class:PassThroughFileSystem
138 return matcher.matches(unwrap(path));
215 Files.setAttribute(unwrap(file), attribute, value, options);
222 return Files.readAttributes(unwrap(file), attributes, options);
230 return Files.getFileAttributeView(unwrap(file), type, options);
239 return Files.readAttributes(unwrap(file), type, options);
244 Files.delete(unwrap(file));
251 Files.createSymbolicLink(unwrap(link), unwrap(target), attrs);
256 Files.createLink(unwrap(lin
[all...]
H A DFaultyFileSystem.java77 private static Path unwrap(Path p) { method in class:FaultyFileSystem
78 return PassThroughFileSystem.unwrap(p);
173 return matcher.matches(unwrap(path));
315 Files.setAttribute(unwrap(file), attribute, value, options);
323 return Files.readAttributes(unwrap(file), attributes, options);
331 return Files.getFileAttributeView(unwrap(file), type, options);
341 return Files.readAttributes(unwrap(file), type, options);
347 Files.delete(unwrap(file));
355 Files.createSymbolicLink(unwrap(link), unwrap(targe
[all...]
/openjdk10/jdk/src/java.security.sasl/share/classes/javax/security/sasl/
H A DSaslServer.java72 * // Use SaslServer.wrap() and SaslServer.unwrap() for future
165 public abstract byte[] unwrap(byte[] incoming, int offset, int len) method in interface:SaslServer
H A DSaslClient.java71 * // Use SaslClient.wrap() and SaslClient.unwrap() for future
172 public abstract byte[] unwrap(byte[] incoming, int offset, int len) method in interface:SaslClient
/openjdk10/jdk/src/java.sql/share/classes/java/sql/
H A DWrapper.java52 * the result of calling <code>unwrap</code> recursively on the wrapped object
62 <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException; method in interface:Wrapper
69 * This method should be implemented as a low-cost operation compared to <code>unwrap</code> so that
70 * callers can use this method to avoid expensive <code>unwrap</code> calls that may fail. If this method
71 * returns true then calling <code>unwrap</code> with the same argument should succeed.
/openjdk10/nashorn/test/script/basic/
H A DJDK-8027753.js25 * JDK-8027753: Support ScriptObject to JSObject, ScriptObjectMirror, Map, Bindings auto-conversion as well as explicit wrap, unwrap
44 var unwrapped = ScriptUtils.unwrap(wrapped);
46 fail("ScriptUtils.unwrap does not return a ScriptObject");
/openjdk10/jdk/test/sun/security/krb5/auto/
H A DNoneReplayCacheTest.java59 s.unwrap(msg, true);
64 s.unwrap(msg, true); // msg replay detectable
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/api/
H A DWrappingJavaFileManager.java98 protected FileObject unwrap(FileObject fileObject) { method in class:WrappingJavaFileManager
103 * This implementation forwards to {@link #unwrap(FileObject)}.
110 protected JavaFileObject unwrap(JavaFileObject fileObject) { method in class:WrappingJavaFileManager
111 return (JavaFileObject)unwrap((FileObject)fileObject);
134 protected URI unwrap(URI uri) { method in class:WrappingJavaFileManager
156 return super.inferBinaryName(location, unwrap(file));
185 return wrap(super.getJavaFileForOutput(location, className, kind, unwrap(sibling)));
215 unwrap(sibling)));
220 return super.contains(location, unwrap(file));
/openjdk10/jdk/src/java.base/share/classes/javax/net/ssl/
H A DSSLEngine.java103 * wrap() | | | unwrap()
170 * {@code wrap()}, {@code unwrap()}, or
175 * ByteBuffer) wrap()} or {@link #unwrap(ByteBuffer, ByteBuffer)
176 * unwrap()} on outbound or inbound data, respectively. Depending on
181 * {@code unwrap()} will examine the source buffer and may
187 * Calls to {@code wrap()} and {@code unwrap()} return an
194 * calls to {@code wrap()/unwrap()}. Thus input and output
205 * For example, {@code unwrap()} will return a {@link
210 * enlarging the buffer if necessary. Similarly, if {@code unwrap()}
217 * SSLEngineResult r = engine.unwrap(sr
624 public SSLEngineResult unwrap(ByteBuffer src, method in class:SSLEngine
661 public SSLEngineResult unwrap(ByteBuffer src, method in class:SSLEngine
749 public abstract SSLEngineResult unwrap(ByteBuffer src, method in class:SSLEngine
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/scripting/
H A DScriptUtils.java80 final Object unwrapped = unwrap(func);
82 return ((ScriptFunction)unwrapped).createSynchronized(unwrap(sync));
114 public static Object unwrap(final Object obj) { method in class:ScriptUtils
116 return ScriptObjectMirror.unwrap(obj, Context.getGlobal());
173 final Object objToConvert = unwrap(obj);
/openjdk10/jdk/test/java/nio/file/spi/
H A DTestProvider.java88 Path delegate = theFileSystem.unwrap(file);
98 Path delegate = theFileSystem.unwrap(file);
107 Path delegate = theFileSystem.unwrap(file);
113 Path delegate = theFileSystem.unwrap(file);
131 Path delegate = theFileSystem.unwrap(link);
162 Path delegate = theFileSystem.unwrap(dir);
172 Path delegate = theFileSystem.unwrap(file);
211 Path unwrap(Path wrapper) { method in class:TestProvider.TestFileSystem
216 return ((TestPath)wrapper).unwrap();
290 Path unwrap() { method in class:TestProvider.TestPath
[all...]
/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DKeyWrapping.java46 // wrap and unwrap the session key
57 (SecretKey)c1.unwrap(wrappedKey, "DES",
88 Key unwrappedPub = c1.unwrap(wrappedPub, "DSA",
90 Key unwrappedPri = c1.unwrap(wrappedPri, "DSA",
/openjdk10/jdk/test/javax/crypto/NullCipher/
H A DTestWithoutInit.java53 // try calling wrap() and unwrap() directly
61 ci.unwrap(in, "any", Cipher.SECRET_KEY);
/openjdk10/jdk/test/com/oracle/security/ucrypto/
H A DTestGCMKeyWrap.java27 * @summary Ensure key wrap/unwrap works using AES/GCM/NoPadding
72 //unwrap the key
75 Key unwrappedKey = cipher.unwrap(wrappedKey, "AES", Cipher.SECRET_KEY);
77 //check if we can unwrap second time
78 unwrappedKey = cipher.unwrap(wrappedKey, "AES", Cipher.SECRET_KEY);
/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/AEAD/
H A DKeyWrapper.java75 // unwrap the key
77 cipher.unwrap(keyWrapper, algo, Cipher.SECRET_KEY);
79 // check if we can unwrap second time
80 Key unwrapKey = cipher.unwrap(keyWrapper, algo, Cipher.SECRET_KEY);
/openjdk10/jdk/test/javax/net/ssl/SSLEngine/
H A DCheckStatus.java141 log("unexpected empty unwrap");
143 result1 = ssle1.unwrap(twoToOne, appIn1);
155 result2 = ssle2.unwrap(oneToTwo, appIn2);
163 log("Check for unwrap when wrap needed");
164 result2 = ssle2.unwrap(oneToTwo, appIn2);
176 result1 = ssle1.unwrap(twoToOne, appIn1);
190 result2 = ssle2.unwrap(oneToTwo, appIn2);
205 result2 = ssle2.unwrap(oneToTwo, appIn2);
220 result2 = ssle2.unwrap(oneToTwo, appIn2);
235 result1 = ssle1.unwrap(twoToOn
[all...]
H A DEngineCloseOnAlert.java117 // Generate the client hello and have the server unwrap it
127 serverResult = server.unwrap(raw, plain);
166 clientResult = client.unwrap(raw, plain);
167 System.out.println("Client result (unwrap alert): " +
179 // Last test, we try to unwrap
180 clientResult = client.unwrap(raw, plain);
211 // Generate the client hello and have the server unwrap it
221 serverResult = server.unwrap(raw, plain);
236 clientResult = client.unwrap(raw, plain);
242 client.unwrap(ra
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJPrimitiveType.java114 public JExpression unwrap( JExpression exp ) { method in class:JPrimitiveType
115 // it just so happens that the unwrap method is always
/openjdk10/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/
H A DExternalClient.java116 public byte[] unwrap(byte[] incoming, int offset, int len) method in class:ExternalClient
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/jgss/spi/
H A DGSSContextSpi.java80 * OutputStream. Similarly, they will want to use unwrap() where they read
83 * do not contain overloaded forms of wrap() and unwrap() that do just
260 * @see unwrap
291 * with unwrap.
311 public void unwrap(InputStream is, OutputStream os, method in interface:GSSContextSpi
317 public byte[] unwrap(byte[] inBuf, int offset, int len, method in interface:GSSContextSpi
327 public int unwrap(byte[] inBuf, int inOffset, int len,
341 public int unwrap(InputStream is,
/openjdk10/jdk/src/java.security.jgss/share/classes/org/ietf/jgss/
H A DGSSContext.java653 public byte [] unwrap(byte[] inBuf, int offset, int len, method in interface:GSSContext
681 * method is equivalent to the byte array based {@link #unwrap(byte[],
682 * int, int, MessageProp) unwrap} method.
700 public void unwrap(InputStream inStream, OutputStream outStream, method in interface:GSSContext
945 * in to the <code>unwrap</code> method or the <code>verifyMIC</code>
977 * in to the <code>unwrap</code> method or the <code>verifyMIC</code>
1224 * @return true if methods like <code>wrap</code>, <code>unwrap</code>,
/openjdk10/jdk/test/sun/security/ssl/SSLEngineImpl/
H A DRehandshakeFinished.java64 * (wrap/unwrap) pass before any application data is consumed or
72 * ... unwrap() ClientHello
74 * unwrap() ... ServerHello/Certificate
78 * ... unwrap() ClientKeyExchange
79 * ... unwrap() ChangeCipherSpec
80 * ... unwrap() Finished
83 * unwrap() ... ChangeCipherSpec
84 * unwrap() ... Finished
251 serverEngine.unwrap(cTOs, serverIn), HandshakeStatus.NEED_WRAP,
261 clientEngine.unwrap(sTO
[all...]
/openjdk10/jdk/test/sun/security/ssl/DHKeyExchange/
H A DDHEKeySizing.java277 result2 = ssle2.unwrap(oneToTwo, appIn2);
298 result1 = ssle1.unwrap(twoToOne, appIn1);
318 result2 = ssle2.unwrap(oneToTwo, appIn2);
331 result2 = ssle2.unwrap(oneToTwo, appIn2);
344 result2 = ssle2.unwrap(oneToTwo, appIn2);
357 result1 = ssle1.unwrap(twoToOne, appIn1);
369 result1 = ssle1.unwrap(twoToOne, appIn1);

Completed in 179 milliseconds

1234567