Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
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/krb5/Krb5ProxyCredential.java
/* * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.security.jgss.krb5; import org.ietf.jgss.*; import sun.security.jgss.spi.*; import java.util.Date; import sun.security.krb5.internal.Ticket; /** * Implements the krb5 proxy credential element used in constrained * delegation. It is used in both impersonation (where there is no Kerberos 5 * communication between the middle server and the client) and normal * constrained delegation (where there is, but client has not called * requestCredDeleg(true)). * @since 1.8 */ public class Krb5ProxyCredential implements Krb5CredElement { public final Krb5InitCredential self; // the middle server private final Krb5NameElement client; // the client // The ticket with cname=client and sname=self. This can be a normal // service ticket or an S4U2self ticket. public final Ticket tkt; Krb5ProxyCredential(Krb5InitCredential self, Krb5NameElement client, Ticket tkt) { this.self = self; this.tkt = tkt; this.client = client; } // The client name behind the proxy @Override public final Krb5NameElement getName() throws GSSException { return client; } @Override public int getInitLifetime() throws GSSException { // endTime of tkt is not used by KDC, and it's also not // available in the case of kerberos constr deleg return self.getInitLifetime(); } @Override public int getAcceptLifetime() throws GSSException { return 0; } @Override public boolean isInitiatorCredential() throws GSSException { return true; } @Override public boolean isAcceptorCredential() throws GSSException { return false; } @Override public final Oid getMechanism() { return Krb5MechFactory.GSS_KRB5_MECH_OID; } @Override public final java.security.Provider getProvider() { return Krb5MechFactory.PROVIDER; } @Override public void dispose() throws GSSException { try { self.destroy(); } catch (javax.security.auth.DestroyFailedException e) { GSSException gssException = new GSSException(GSSException.FAILURE, -1, "Could not destroy credentials - " + e.getMessage()); gssException.initCause(e); } } @Override public GSSCredentialSpi impersonate(GSSNameSpi name) throws GSSException { // Cannot impersonate multiple levels without the impersonatee's TGT. throw new GSSException(GSSException.FAILURE, -1, "Only an initiate credentials can impersonate"); } }
⏎ sun/security/jgss/krb5/Krb5ProxyCredential.java
Or download all of them as a single archive file:
File name: java.security.jgss-11.0.1-src.zip File size: 216236 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.security.sasl.jmod - Security SASL Module
2020-09-15, 32735👍, 0💬
Popular Posts:
JDK 11 jdk.crypto.mscapi.jmod is the JMOD file for JDK 11 Crypto MSCAPI module. JDK 11 Crypto MSCAPI...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
What Is poi-examples-5.2.3.jar? poi-examples-5.2.3.jar is one of the JAR files for Apache POI 5.2.3,...
What Is commons-net-ftp-2.0.jar? commons-net-ftp-2.0.jar is the JAR file for Apache Commons Net FTP ...