- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for SID_TYPE_ALIAS (0.05 sec)
-
src/main/java/jcifs/SID.java
*/ int SID_TYPE_DOM_GRP = 2; /** * SID type indicating a domain. */ int SID_TYPE_DOMAIN = 3; /** * SID type indicating a local group or alias. */ int SID_TYPE_ALIAS = 4; /** * SID type indicating a well-known group. */ int SID_TYPE_WKN_GRP = 5; /** * SID type indicating a deleted account. */ int SID_TYPE_DELETED = 6;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* SID type indicating a domain. */ public static final int SID_TYPE_DOMAIN = lsarpc.SID_NAME_DOMAIN; /** * SID type indicating a local group or alias. */ public static final int SID_TYPE_ALIAS = lsarpc.SID_NAME_ALIAS; /** * SID type indicating a well-known group. */ public static final int SID_TYPE_WKN_GRP = lsarpc.SID_NAME_WKN_GRP; /** * SID type indicating a deleted account.
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/SIDCacheImpl.java
switch (resp.sid_type) { case jcifs.SID.SID_TYPE_USER: case jcifs.SID.SID_TYPE_DOM_GRP: case jcifs.SID.SID_TYPE_DOMAIN: case jcifs.SID.SID_TYPE_ALIAS: case jcifs.SID.SID_TYPE_WKN_GRP: final rpc.unicode_string ustr = rpc.domains.domains[resp.sid_index].name; out.domainName = new UnicodeString(ustr, false).toString();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
rpcSid.sub_authority_count = 2; rpcSid.identifier_authority = new byte[] { 0, 0, 0, 0, 0, 5 }; rpcSid.sub_authority = new int[] { 32, 544 }; SID sid = new SID(rpcSid, SID.SID_TYPE_ALIAS, "MYDOMAIN", "MyAlias", false); assertEquals("MYDOMAIN\\MyAlias", sid.toDisplayString()); SID domainSid = new SID(rpcSid, SID.SID_TYPE_DOMAIN, "MYDOMAIN", null, true);
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/test/java/jcifs/smb/SIDTest.java
// BUILTIN with other type also returns acctName SID aliasBuiltin = new SID(buildSidT((byte) 1, ident, 545), jcifs.SID.SID_TYPE_ALIAS, "BUILTIN", "Users", false); assertEquals("Users", aliasBuiltin.toDisplayString()); } @Test @DisplayName("toString uses hex authority when high bytes are non-zero")
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/main/java/jcifs/smb/SID.java
*/ public jcifs.SID[] getGroupMemberSids(final String authorityServerName, final CIFSContext tc, final int flags) throws IOException { if (this.type != SID_TYPE_DOM_GRP && this.type != SID_TYPE_ALIAS) { return new SID[0]; } return tc.getSIDResolver().getGroupMemberSids(tc, authorityServerName, getDomainSid(), getRid(), flags); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0)