Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
JDK 11 java.security.jgss.jmod - Security JGSS Module
JDK 11 java.security.jgss.jmod is the JMOD file for JDK 11 Security JGSS
(Java Generic Security Service) module.
JDK 11 Security JGSS module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.security.jgss.jmod.
JDK 11 Security JGSS module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Security JGSS module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.security.jgss.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/security/jgss/spnego/SpNegoCredElement.java
/* * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.security.jgss.spnego; import org.ietf.jgss.*; import java.security.Provider; import sun.security.jgss.GSSUtil; import sun.security.jgss.spi.GSSNameSpi; import sun.security.jgss.spi.GSSCredentialSpi; /** * This class is the cred element implementation for SPNEGO mech. * NOTE: The current implementation can only support one mechanism. * This should be changed once multi-mechanism support is needed. * * @author Valerie Peng * @since 1.6 */ public class SpNegoCredElement implements GSSCredentialSpi { private GSSCredentialSpi cred = null; public SpNegoCredElement(GSSCredentialSpi cred) throws GSSException { this.cred = cred; } Oid getInternalMech() { return cred.getMechanism(); } // Used by GSSUtil.populateCredentials() public GSSCredentialSpi getInternalCred() { return cred; } public Provider getProvider() { return SpNegoMechFactory.PROVIDER; } public void dispose() throws GSSException { cred.dispose(); } public GSSNameSpi getName() throws GSSException { return cred.getName(); } public int getInitLifetime() throws GSSException { return cred.getInitLifetime(); } public int getAcceptLifetime() throws GSSException { return cred.getAcceptLifetime(); } public boolean isInitiatorCredential() throws GSSException { return cred.isInitiatorCredential(); } public boolean isAcceptorCredential() throws GSSException { return cred.isAcceptorCredential(); } public Oid getMechanism() { return GSSUtil.GSS_SPNEGO_MECH_OID; } @Override public GSSCredentialSpi impersonate(GSSNameSpi name) throws GSSException { return cred.impersonate(name); } }
⏎ sun/security/jgss/spnego/SpNegoCredElement.java
Â
⇒ JDK 11 java.security.sasl.jmod - Security SASL Module
2020-09-15, 18679👍, 0💬
Popular Posts:
How to download and install ojdbc14.jar for Oracle 10g R2? ojdbc14.jar for Oracle 10g R2 is a Java 1...
JDK 11 jdk.javadoc.jmod is the JMOD file for JDK 11 Java Document tool, which can be invoked by the ...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
Saxon is an open source product available under the Mozilla Public License. It provides implementati...
How to read XML document with XML Schema validation from socket connections with the socket\DelayedI...