Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for setKeyRotationLimits (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

         *
         * @param bytesLimit maximum bytes to encrypt before rotation (0 to disable)
         * @param timeMillis maximum time in milliseconds before rotation (0 to disable)
         */
        public void setKeyRotationLimits(long bytesLimit, long timeMillis) {
            if (bytesLimit > 0) {
                this.keyRotationBytesLimit = bytesLimit;
            }
            if (timeMillis > 0) {
                this.keyRotationTimeLimit = timeMillis;
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 35.5K bytes
    - Click Count (0)
Back to Top