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, 22311👍, 0💬
Popular Posts:
JDK 11 jdk.dynalink.jmod is the JMOD file for JDK 11 Dynamic Linking module. JDK 11 Dynamic Linking ...
How to download and install JDK (Java Development Kit) 5? If you want to write Java applications, yo...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...
ANTLR is a powerful parser generator for multiple programming languages including Java. ANTLR contai...