Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 11 jdk.security.jgss.jmod - Security JGSS Module
JDK 11 jdk.security.jgss.jmod is the JMOD file for JDK 11 Security Jgss module.
JDK 11 Security JGSS module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.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\jdk.security.jgss.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/security/jgss/InquireType.java
/* * Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.security.jgss; /** * Attribute types that can be specified as an argument of * {@link com.sun.security.jgss.ExtendedGSSContext#inquireSecContext} */ public enum InquireType { /** * Attribute type for retrieving the session key of an established * Kerberos 5 security context. The returned object is an instance of * {@link java.security.Key}, which has the following properties: * <ul> * <li>Algorithm: enctype as a string, where * enctype is defined in RFC 3961, section 8. * <li>Format: "RAW" * <li>Encoded form: the raw key bytes, not in any ASN.1 encoding * </ul> * @deprecated as of 9, replaced by {@link #KRB5_GET_SESSION_KEY_EX} * which returns an instance of * {@link javax.security.auth.kerberos.EncryptionKey} * that implements the {@link javax.crypto.SecretKey} interface and * has similar methods with {@link javax.security.auth.kerberos.KerberosKey}. */ @Deprecated KRB5_GET_SESSION_KEY, /** * Attribute type for retrieving the session key of an * established Kerberos 5 security context. The return value is an * instance of {@link javax.security.auth.kerberos.EncryptionKey}. * * @since 9 */ KRB5_GET_SESSION_KEY_EX, /** * Attribute type for retrieving the service ticket flags of an * established Kerberos 5 security context. The returned object is * a boolean array for the service ticket flags, which is long enough * to contain all true bits. This means if the user wants to get the * <em>n</em>'th bit but the length of the returned array is less than * <em>n</em>, it is regarded as false. */ KRB5_GET_TKT_FLAGS, /** * Attribute type for retrieving the authorization data in the * service ticket of an established Kerberos 5 security context. * Only supported on the acceptor side. */ KRB5_GET_AUTHZ_DATA, /** * Attribute type for retrieving the authtime in the service ticket * of an established Kerberos 5 security context. The returned object * is a String object in the standard KerberosTime format defined in * RFC 4120 Section 5.2.3. */ KRB5_GET_AUTHTIME, /** * Attribute type for retrieving the KRB_CRED message that an initiator * is about to send to an acceptor. The return type is an instance of * {@link javax.security.auth.kerberos.KerberosCredMessage}. * * @since 9 */ KRB5_GET_KRB_CRED, }
⏎ com/sun/security/jgss/InquireType.java
⇒ JDK 11 jdk.unsupported.jmod - Unsupported Module
2020-04-14, 3651👍, 0💬
Popular Posts:
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
How to download and install ojdbc6.jar for Oracle 11g R2? ojdbc6.jar for Oracle 11g R2 is a Java 6, ...
The SOAP with Attachments API for JavaTM (SAAJ) 1.3 provides the API for creating and sending SOAP m...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module. JDK 11 Desktop module compiled ...