- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 166 for ENCRYPTION (0.14 sec)
-
src/main/java/jcifs/SmbException.java
FATAL // Connection or session must be terminated } /** * Error categories */ public enum Category { AUTHENTICATION, AUTHORIZATION, NETWORK, PROTOCOL, RESOURCE, CONFIGURATION, ENCRYPTION, TIMEOUT, IO, UNKNOWN } private final int errorCode; private final Severity severity; private final Category category; private final Map<String, Object> context;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosCredentials.java
} } return serverKeys.toArray(new KerberosKey[0]); } /** * Retrieves a specific Kerberos key by key type. * * @param keyType the encryption type of the key to retrieve * @return the KerberosKey with the specified type, or null if not found */ public KerberosKey getKey(int keyType) { KerberosKey serverKey = null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.3K bytes - Viewed (0) -
cmd/object-handlers.go
// while reading the object from another source. // Notice: The S3 client can send secret keys in headers for encryption related jobs, // the handler should ensure to remove these keys before sending them to the object layer. // Currently these keys are: // - X-Amz-Server-Side-Encryption-Customer-Key // - X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key func (api objectAPIHandlers) CopyObjectHandler(w http.ResponseWriter, r *http.Request) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 120.6K bytes - Viewed (0) -
cmd/signature-v4-utils_test.go
// expect to fail with `ErrUnsignedHeaders` because couldn't find some header _, errCode = extractSignedHeaders(signedHeaders, r) if errCode != ErrUnsignedHeaders { t.Fatalf("Expected the APIErrorCode to %d, but got %d", ErrUnsignedHeaders, errCode) } // set headers value through Get parameter inputQuery.Add("x-amz-server-side-encryption", xhttp.AmzEncryptionAES)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java
/** * Share flag indicating that hash generation V2 is enabled for this share. */ public static final int SMB2_SHAREFLAG_ENABLE_HASH_V2 = 0x4000; /** * Share flag indicating that encryption is required for this share. */ public static final int SMB2_SHAREFLAG_ENCRYPT_DATA = 0x8000; /** * Share capability indicating DFS support. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacTest.java
import org.mockito.MockedStatic; class PacTest { private Map<Integer, KerberosKey> keys; @BeforeEach void setUp() { keys = new HashMap<>(); // Use ARCFOUR-HMAC encryption type (23) which matches KERB_CHECKSUM_HMAC_MD5 KerberosKey serverKey = new KerberosKey(new KerberosPrincipal("******@****.***"), "serverKey1234567".getBytes(), PacSignature.ETYPE_ARCFOUR_HMAC, 1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** Whether SMB3 encryption is enabled */ protected boolean encryptionEnabled = false; /** Whether SMB3 compression is enabled */ protected boolean compressionEnabled = false; /** Preferred encryption ciphers in order of preference */ protected String preferredCiphers = "AES_128_GCM,AES_128_CCM,AES_256_GCM,AES_256_CCM"; /** Whether AES-256 encryption is enabled */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
setPrivateField(response, "commonCapabilities", 0); assertFalse(response.isDFSSupported()); } @Test @DisplayName("Should check encryption support") void testIsEncryptionSupported() throws Exception { // Given setPrivateField(response, "supportsEncryption", true); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
return dgst.digest(); } /** * Create encryption context for SMB3 encrypted communication * * @param sessionKey the session key from GSS-API authentication * @param preauthHash the pre-authentication integrity hash (SMB 3.1.1 only) * @return encryption context * @throws CIFSException if encryption is not supported or fails */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java
assertEquals(invertibleCryptographer, provider.providePrimaryInvertibleCryptographer()); assertEquals(md5, provider.providePrimaryOneWayCryptographer()); } // Test encryption and decryption functionality public void test_invertibleCryptography() { // Test that invertible cryptography works correctly
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0)