Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for saveEncrypted (1.03 sec)

  1. docs/smb3-features/02-persistent-handles-design.md

        }
    }
    ```
    
    ## 12. Security Considerations
    
    ### 12.1 Handle State Encryption
    ```java
    public class SecureHandleStorage {
        private final SecretKey encryptionKey;
        
        public void saveEncrypted(HandleInfo handle, Path file) throws Exception {
            Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding");
            cipher.init(Cipher.ENCRYPT_MODE, encryptionKey);
            
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
Back to top