Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 31 of 31 for mathml (0.14 sec)

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

         *
         * @param key
         *            The key material to use in hashing.
         */
        public HMACT64 ( byte[] key ) {
            super("HMACT64");
            int length = Math.min(key.length, BLOCK_LENGTH);
            for ( int i = 0; i < length; i++ ) {
                this.ipad[ i ] = (byte) ( key[ i ] ^ IPAD );
                this.opad[ i ] = (byte) ( key[ i ] ^ OPAD );
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top