- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for sid (0.01 sec)
-
src/main/java/jcifs/smb1/smb1/SID.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
/** * Well known SID: EVERYONE */ public static SID EVERYONE = null; /** * Well known SID: CREATOR_OWNER */ public static SID CREATOR_OWNER = null; /** * Well known SID: SYSTEM */ public static SID SYSTEM = null; static { try { EVERYONE = new SID("S-1-1-0"); CREATOR_OWNER = new SID("S-1-3-0");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
// Assert assertEquals("S-1-5-21-1-2-3-1029", sid.toString()); assertEquals(1029, sid.getRid()); } @Test @DisplayName("Relative constructor with SID appends all subauthorities of relative SID") void testRelativeConstructorWithSid() throws Exception { // Arrange SID dom = new SID("S-1-5-21");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/SidResolverTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcIntegrationTest.java
// Verify SID assertNotNull(decodedInfo.sid); assertEquals(trustInfo.sid.revision, decodedInfo.sid.revision); assertEquals(trustInfo.sid.sub_authority_count, decodedInfo.sid.sub_authority_count); } @Test void testLsarSidArrayEncodeDecodeRoundTrip() throws NdrException { // Create SID array with test data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
return false; } }); sambaHelper.init(); // Test SID that throws exception in toDisplayString SID exceptionSID = new SID() { @Override public SID getDomainSid() { return null; } @Override public int getRid() { return 0;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
/** SID name type: domain. */ /** SID name type: domain. */ public static final int SID_NAME_DOMAIN = 3; /** SID name type: alias. */ /** SID name type: alias. */ public static final int SID_NAME_ALIAS = 4; /** SID name type: well-known group. */ /** SID name type: well-known group. */ public static final int SID_NAME_WKN_GRP = 5; /** SID name type: deleted. */ /** SID name type: deleted account. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
SID sid = new SID(adminSidBytes, 0); assertArrayEquals(adminSidBytes, sid.toByteArray()); } /** * Test the equals method. * * @throws SmbException if the SID string is invalid */ @Test void testEquals() throws SmbException { SID sid1 = new SID(adminSidString); SID sid2 = new SID(adminSidBytes, 0); SID sid3 = new SID("S-1-1-0"); // Everyone
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
} /** * Returns the user's Security Identifier (SID). * @return the user SID */ public SID getUserSid() { return this.userSid; } /** * Returns the user's primary group SID. * @return the primary group SID */ public SID getGroupSid() { return this.groupSid; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0)