Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for supportsIntegrity (0.21 sec)

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

            }
            catch ( IOException e ) {
                throw new SpnegoException("Invalid token");
            }
        }
    
    
        @Override
        public boolean supportsIntegrity () {
            return this.mechContext.supportsIntegrity();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#isPreferredMech(org.bouncycastle.asn1.ASN1ObjectIdentifier)
         */
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SSPContext.java

         * @return array of supported mechanism OIDs
         */
        ASN1ObjectIdentifier[] getSupportedMechs ();
    
    
        /**
         * 
         * @return whether this mechanisms supports integrity
         */
        boolean supportsIntegrity ();
    
    
        /**
         * @param data
         * @return MIC
         * @throws CIFSException
         */
        byte[] calculateMIC ( byte[] data ) throws CIFSException;
    
    
        /**
         * @param data
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Context.java

            return this.gssContext != null && this.gssContext.isEstablished();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#supportsIntegrity()
         */
        @Override
        public boolean supportsIntegrity () {
            return true;
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @throws CIFSException
         *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmContext.java

            md5.update(masterKey);
            md5.update(cnst.getBytes(StandardCharsets.US_ASCII));
            md5.update((byte) 0);
            return md5.digest();
        }
    
    
        @Override
        public boolean supportsIntegrity () {
            return true;
        }
    
    
        @Override
        public boolean isMICAvailable () {
            return !this.auth.isGuest() && this.signKey != null && this.verifyKey != null;
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
Back to top