Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for calculateMIC (0.19 sec)

  1. src/main/java/jcifs/smb/NtlmContext.java

        }
    
    
        @Override
        public boolean isMICAvailable () {
            return !this.auth.isGuest() && this.signKey != null && this.verifyKey != null;
        }
    
    
        @Override
        public byte[] calculateMIC ( byte[] data ) throws CIFSException {
            byte[] sk = this.signKey;
            if ( sk == null ) {
                throw new CIFSException("Signing is not initialized");
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
Back to top