Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CIPHER_AES_128_GCM (0.69 sec)

  1. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

        }
    
        private boolean isGCMCipher() {
            return this.cipherId == CIPHER_AES_128_GCM || this.cipherId == CIPHER_AES_256_GCM;
        }
    
        private int getKeyLength() {
            // Java 17 switch expression for cipher key length determination
            return switch (this.cipherId) {
            case CIPHER_AES_128_CCM, CIPHER_AES_128_GCM -> 16; // AES-128 ciphers use 16-byte keys
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
Back to top