Remove redundant "public" qualifier.

This commit is contained in:
Tobias Preuss 2020-06-21 20:05:39 +02:00
parent 178bdff62a
commit aeb41bc516
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ import kotlin.math.ceil
*/
object HkdfSha256 {
public fun deriveSecret(inputKeyMaterial: ByteArray, salt: ByteArray?, info: ByteArray, outputLength: Int): ByteArray {
fun deriveSecret(inputKeyMaterial: ByteArray, salt: ByteArray?, info: ByteArray, outputLength: Int): ByteArray {
return expand(extract(salt, inputKeyMaterial), info, outputLength)
}