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/krb5/Krb5Token.java
/* * Copyright (c) 2000, 2006, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.security.jgss.krb5; import java.io.IOException; import sun.security.util.*; import sun.security.jgss.*; /** * This class represents a base class for all Kerberos v5 GSS-API * tokens. It contains commonly used definitions and utilities. * * @author Mayank Upadhyay */ abstract class Krb5Token extends GSSToken { /** * The token id defined for the token emitted by the initSecContext call * carrying the AP_REQ . */ public static final int AP_REQ_ID = 0x0100; /** * The token id defined for the token emitted by the acceptSecContext call * carrying the AP_REP . */ public static final int AP_REP_ID = 0x0200; /** * The token id defined for any token carrying a KRB-ERR message. */ public static final int ERR_ID = 0x0300; /** * The token id defined for the token emitted by the getMIC call. */ public static final int MIC_ID = 0x0101; /** * The token id defined for the token emitted by the wrap call. */ public static final int WRAP_ID = 0x0201; // new token ID draft-ietf-krb-wg-gssapi-cfx-07.txt public static final int MIC_ID_v2 = 0x0404; public static final int WRAP_ID_v2 = 0x0504; /** * The object identifier corresponding to the Kerberos v5 GSS-API * mechanism. */ public static ObjectIdentifier OID; static { try { OID = new ObjectIdentifier(Krb5MechFactory. GSS_KRB5_MECH_OID.toString()); } catch (IOException ioe) { // should not happen } } /** * Returns a strign representing the token type. * * @param tokenId the token id for which a string name is desired * @return the String name of this token type */ public static String getTokenName(int tokenId) { String retVal = null; switch (tokenId) { case AP_REQ_ID: case AP_REP_ID: retVal = "Context Establishment Token"; break; case MIC_ID: retVal = "MIC Token"; break; case MIC_ID_v2: retVal = "MIC Token (new format)"; break; case WRAP_ID: retVal = "Wrap Token"; break; case WRAP_ID_v2: retVal = "Wrap Token (new format)"; break; default: retVal = "Kerberos GSS-API Mechanism Token"; break; } return retVal; } }
⏎ sun/security/jgss/krb5/Krb5Token.java
Â
⇒ JDK 11 java.security.sasl.jmod - Security SASL Module
2020-09-15, 18747👍, 0💬
Popular Posts:
What Is Apache XMLBeans-2.6.0.zip file? Apache XMLBeans-2.6.0.zip file is the distribution package Z...
What Is poi-ooxml-3.5.jar? poi-ooxml-3.5.jar is one of the JAR files for Apache POI 3.5, which provi...
Jettison is a collection of Java APIs (like STaX and DOM) which read and write JSON. This allows nea...
maven-model-builder-3.5. 4.jaris the JAR file for Apache Maven 3.5.4 Model Builder module. Apache Ma...
What Is poi-contrib-3.5.jar? poi-contrib-3.5.jar is one of the JAR files for Apache POI 3.5, which p...