- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for New128 (2.04 sec)
-
cmd/sftp-server.go
} // supportedCiphers lists ciphers we support but might not recommend. // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=28 var supportedCiphers = []string{ "aes128-ctr", "aes192-ctr", "aes256-ctr", "aes128******@****.***", gcm256CipherID, chacha20Poly1305ID, "arcfour256", "arcfour128", "arcfour", aes128cbcID, tripledescbcID, }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacMacTest.java
// Test HMAC-MD5 byte[] mac1 = PacMac.calculateMac(PacSignature.KERB_CHECKSUM_HMAC_MD5, keys, TEST_DATA); assertNotNull(mac1); assertEquals(16, mac1.length); // Test AES128 byte[] mac2 = PacMac.calculateMac(PacSignature.HMAC_SHA1_96_AES128, keys, TEST_DATA); assertNotNull(mac2); assertEquals(12, mac2.length); // Test AES256
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
// Given byte[] key128 = new byte[16]; // 128-bit byte[] key256 = new byte[32]; // 256-bit new SecureRandom().nextBytes(key128); new SecureRandom().nextBytes(key256); // When/Then assertDoesNotThrow(() -> { Smb2EncryptionContext context = new Smb2EncryptionContext(1, DialectVersion.SMB311, key128, key256);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosTicketTest.java
private static final String USER_PRINCIPAL_NAME = "******@****.***"; private static final String USER_REALM = "EXAMPLE.COM"; private static final int ENCRYPTION_TYPE = 23; // aes128-cts-hmac-sha1-96 private static final byte[] ENCRYPTED_DATA = "encrypted-data".getBytes(); @BeforeEach void setUp() { keys = new KerberosKey[] { kerberosKey }; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0)