Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for MIC (0.01 sec)

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

                throw new CIFSException("Failed to calculate MIC", e);
            }
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#verifyMIC(byte[], byte[])
         */
        @Override
        public void verifyMIC(byte[] data, byte[] mic) throws CIFSException {
            try {
                this.gssContext.verifyMIC(mic, 0, mic.length, data, 0, data.length, new MessageProp(false));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 13.5K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb/SpnegoContext.java

                log.debug("Out Mech list MIC " + Hexdump.toHexString(mechanismListMIC));
            }
            return mechanismListMIC;
        }
    
        private void verifyMechListMIC(final byte[] mechanismListMIC) throws CIFSException {
            if (this.disableMic) {
                return;
            }
    
            // No MIC verification if not present and not required
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/spnego/NegTokenTarg.java

         */
        public static final int ACCEPT_INCOMPLETE = 1;
        /**
         * Result code indicating authentication was rejected
         */
        public static final int REJECTED = 2;
        /**
         * Result code indicating MIC token is requested
         */
        public static final int REQUEST_MIC = 3;
    
        private ASN1ObjectIdentifier mechanism;
    
        private int result = UNSPECIFIED_RESULT;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/ntlmssp/Type3MessageTest.java

            // Then
            // MIC (Message Integrity Check) should be included for newer versions
            if (type3.isMICRequired()) {
                assertNotNull(type3.getMic());
                assertEquals(16, type3.getMic().length); // MIC is 16 bytes
            }
        }
    
        @Test
        @DisplayName("Should handle case sensitivity correctly")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                            // a relatively large range of samba versions has a bug causing
                            // an invalid parameter error when a SPNEGO MIC is in place and auth fails
                            throw new SmbAuthException("Login failed", e);
                        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
Back to top