Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getSHA512 (0.13 sec)

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

            catch ( NoSuchAlgorithmException e ) {
                throw new CIFSUnsupportedCryptoException(e);
            }
        }
    
    
        /**
         * @return SHA512 digest
         */
        public static MessageDigest getSHA512 () {
            try {
                return MessageDigest.getInstance("SHA-512");
            }
            catch ( NoSuchAlgorithmException e ) {
                throw new CIFSUnsupportedCryptoException(e);
            }
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Aug 17 17:34:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top