Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Perret (0.2 sec)

  1. src/main/java/jcifs/smb1/util/HMACT64.java

        private MessageDigest md5;
    
        private byte[] ipad = new byte[BLOCK_LENGTH];
    
        private byte[] opad = new byte[BLOCK_LENGTH];
    
        /**
         * Creates an HMACT64 instance which uses the given secret key material.
         *
         * @param key The key material to use in hashing.
         */
        public HMACT64(byte[] key) {
            super("HMACT64");
            int length = Math.min(key.length, BLOCK_LENGTH);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/HMACT64.java

        private MessageDigest md5;
    
        private byte[] ipad = new byte[BLOCK_LENGTH];
    
        private byte[] opad = new byte[BLOCK_LENGTH];
    
    
        /**
         * Creates an HMACT64 instance which uses the given secret key material.
         *
         * @param key
         *            The key material to use in hashing.
         */
        public HMACT64 ( byte[] key ) {
            super("HMACT64");
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top