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 17 jdk.security.auth.jmod - Security Auth Module
JDK 17 jdk.security.auth.jmod is the JMOD file for JDK 17 Security Auth module.
JDK 17 Security Auth module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.security.auth.jmod.
JDK 17 Security Auth module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Security Auth module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.security.auth.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/security/auth/module/NTSystem.java
/* * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.security.auth.module; /** * This class implementation retrieves and makes available NT * security information for the current user. * */ public class NTSystem { private native void getCurrent(boolean debug); private native long getImpersonationToken0(); // Warning: the next 6 fields are used by nt.c private String userName; private String domain; private String domainSID; private String userSID; private String[] groupIDs; private String primaryGroupID; private long impersonationToken; /** * Instantiate an {@code NTSystem} and load * the native library to access the underlying system information. */ public NTSystem() { this(false); } /** * Instantiate an {@code NTSystem} and load * the native library to access the underlying system information. */ NTSystem(boolean debug) { loadNative(); getCurrent(debug); } /** * Get the username for the current NT user. * * @return the username for the current NT user. */ public String getName() { return userName; } /** * Get the domain for the current NT user. * * @return the domain for the current NT user. */ public String getDomain() { return domain; } /** * Get a printable SID for the current NT user's domain. * * @return a printable SID for the current NT user's domain. */ public String getDomainSID() { return domainSID; } /** * Get a printable SID for the current NT user. * * @return a printable SID for the current NT user. */ public String getUserSID() { return userSID; } /** * Get a printable primary group SID for the current NT user. * * @return the primary group SID for the current NT user. */ public String getPrimaryGroupID() { return primaryGroupID; } /** * Get the printable group SIDs for the current NT user. * * @return the group SIDs for the current NT user. */ public String[] getGroupIDs() { return groupIDs == null ? null : groupIDs.clone(); } /** * Get an impersonation token for the current NT user. * * @return an impersonation token for the current NT user. */ public synchronized long getImpersonationToken() { if (impersonationToken == 0) { impersonationToken = getImpersonationToken0(); } return impersonationToken; } private void loadNative() { System.loadLibrary("jaas"); } }
⏎ com/sun/security/auth/module/NTSystem.java
Or download all of them as a single archive file:
File name: jdk.security.auth-17.0.5-src.zip File size: 67508 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.security.jgss.jmod - Security JGSS Module
2023-03-28, 2829👍, 0💬
Popular Posts:
What Is javaws.jar in JRE (Java Runtime Environment) 8? javaws.jar in JRE (Java Runtime Environment)...
maven-model-builder-3.8. 6.jaris the JAR file for Apache Maven 3.8.6 Model Builder module. Apache Ma...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
How to perform XML Schema validation with dom\Writer.java provided in the Apache Xerces package? You...
What Is poi-3.5.jar - Part 2? poi-3.5.jar is one of the JAR files for Apache POI 3.5, which provides...