(String algorithm)
| 94 | /// |
| 95 | /// - `CryptoException`: if the algorithm is not recognised |
| 96 | public static Hash create(String algorithm) { |
| 97 | return new Hash(MessageDigestImpl.create(algorithm)); |
| 98 | } |
| 99 | |
| 100 | /// Feeds the entire array into the running hash. |
| 101 | /// |