- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 127 for 0x22 (0.05 sec)
-
src/main/java/jcifs/pac/PacConstants.java
static final int CLIENT_UPN_TYPE = 0xC; static final int CLIENT_CLAIMS_TYPE = 0xD; static final int DEVICE_INFO_TYPE = 0xE; static final int DEVICE_CLAIMS_TYPE = 0xF; static final int LOGON_EXTRA_SIDS = 0x20; static final int LOGON_RESOURCE_GROUPS = 0x200; static final int MD5_KRB_SALT = 17; static final int MD5_BLOCK_LENGTH = 64;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
static final int FILE_SYNCHRONOUS_IO_NONALERT = 0x00000020; // security flags static final int SECURITY_CONTEXT_TRACKING = 0x01; static final int SECURITY_EFFECTIVE_ONLY = 0x02; private int rootDirectoryFid, extFileAttributes, shareAccess, createDisposition, createOptions, impersonationLevel; private long allocationSize;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.6K bytes - Viewed (0) -
okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/GenerateIdnaMappingTableCode.kt
* don't want to perform `trimMargin()` at runtime. */ fun String.escapeDataString(): String { return buildString { for (codePoint in ******@****.***ints()) { when (codePoint) { in 0..0x20, '"'.code, '$'.code, '\\'.code, 'ยท'.code, 127, -> append(String.format("\\u%04x", codePoint)) else -> appendCodePoint(codePoint) } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Name.java
this.scope = scope != null && scope.length() > 0 ? scope : DEFAULT_SCOPE; this.srcHashCode = 0; } int writeWireFormat( byte[] dst, int dstIndex ) { // write 0x20 in first byte dst[dstIndex] = 0x20; // write name try { byte tmp[] = name.getBytes( Name.OEM_ENCODING ); int i; for( i = 0; i < tmp.length; i++ ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
*/ public static final int SMB2_GLOBAL_CAP_PERSISTENT_HANDLES = 0x10; /** * */ public static final int SMB2_GLOBAL_CAP_DIRECTORY_LEASING = 0x20; /** * */ public static final int SMB2_GLOBAL_CAP_ENCRYPTION = 0x40; /** * */ public static final byte SMB2_0_INFO_FILE = 1; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl
[out] uint32_t num_entries); [op(0x1b)] int SamrOpenAlias([in] policy_handle *domain_handle, [in] uint32_t access_mask, [in] uint32_t rid, [out] policy_handle *alias_handle); [op(0x21)] int SamrGetMembersInAlias([in] policy_handle *alias_handle, [out] LsarSidArray *sids); typedef [v1_enum] enum { SE_GROUP_MANDATORY = 0x00000001, SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java
@Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { ByteArrayOutputStream bos = new ByteArrayOutputStream(); for ( String dialect : this.dialects ) { bos.write(0x02); try { bos.write(Strings.getASCIIBytes(dialect)); } catch ( IOException e ) { throw new RuntimeCIFSException(e); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.3K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/SignedBytes.java
max = array[i]; } } return max; } /** * Returns a string containing the supplied {@code byte} values separated by {@code separator}. * For example, {@code join(":", 0x01, 0x02, -0x01)} returns the string {@code "1:2:-1"}. * * @param separator the text that should appear between consecutive values in the resulting string * (but not at the start or end)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
} this.server.securityMode = buffer[ bufferIndex++ ] & 0xFF; this.server.security = this.server.securityMode & 0x01; this.server.encryptedPasswords = ( this.server.securityMode & 0x02 ) == 0x02; this.server.signaturesEnabled = ( this.server.securityMode & 0x04 ) == 0x04; this.server.signaturesRequired = ( this.server.securityMode & 0x08 ) == 0x08;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java
static final int FILE_SYNCHRONOUS_IO_NONALERT = 0x00000020; // security flags static final int SECURITY_CONTEXT_TRACKING = 0x01; static final int SECURITY_EFFECTIVE_ONLY = 0x02; private int rootDirectoryFid, extFileAttributes, shareAccess, createDisposition, createOptions, impersonationLevel; private long allocationSize; private byte securityFlags; private int namelen_index;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.2K bytes - Viewed (0)