You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* See [MessageDigest section](https://docs.oracle.com/en/java/javase/11/docs/specs/security/standard-names.html#messagedigest-algorithms) of the Java Security Standard Algorithm Names Specification
110
+
*
111
+
* @receiver The byte array to hash
112
+
* @param algorithm The algorithm instance to use
113
+
* @param extra Additional data to digest with the byte array
114
+
*
115
+
* @return The string representation of the hash
116
+
*/
117
+
fun ByteArray.hashString(algorithm:String, varargextra:ByteArray): String=
* See [MessageDigest section](https://docs.oracle.com/en/java/javase/11/docs/specs/security/standard-names.html#messagedigest-algorithms) of the Java Security Standard Algorithm Names Specification
113
123
*
114
124
* @receiver The byte array to hash
115
125
* @param algorithm The algorithm instance to use
116
-
* @param extra Additional data to digest with the bytearray
126
+
* @param extra Additional data to digest with the byte array
0 commit comments