Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sk (0.21 sec)

  1. src/main/java/jcifs/ntlmssp/Type3Message.java

         * @throws IOException
         */
        public void setupMIC ( byte[] type1, byte[] type2 ) throws GeneralSecurityException, IOException {
            byte[] sk = this.masterKey;
            if ( sk == null ) {
                return;
            }
            MessageDigest mac = Crypto.getHMACT64(sk);
            mac.update(type1);
            mac.update(type2);
            byte[] type3 = toByteArray();
            mac.update(type3);
            setMic(mac.digest());
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
Back to top