All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.diglol.crypto.Hash.kt Maven / Gradle / Ivy

The newest version!
package diglol.crypto

// https://datatracker.ietf.org/doc/html/rfc4634
expect class Hash(type: Type) {
  internal val type: Type

  enum class Type {
    SHA1,
    SHA256,
    SHA384,
    SHA512
  }

  suspend fun hash(data: ByteArray): ByteArray
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy