Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
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/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
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, 28781👍, 0💬
Popular Posts:
Where to find answers to frequently asked questions on Downloading and Using JDK (Java Development K...
maven-core-3.5.4.jar is the JAR file for Apache Maven 3.5.4 Core module. Apache Maven is a software ...
xml-commons Resolver Source Code Files are provided in the source package file, xml-commons-resolver...
commons-io-1.4.jar is the JAR file for Commons IO 1.4, which is a library of utilities to assist wit...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....