mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-17 11:48:51 +03:00
Remove redundant "public" qualifier.
This commit is contained in:
parent
178bdff62a
commit
aeb41bc516
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue