Merge pull request #21 from ionspin/20-ed25519-curve-pk-conversion-fix

Fix ed25519PkToCurve25519 jvm and native implementations
This commit is contained in:
Ugljesa Jovanovic 2022-03-04 13:32:42 +01:00 committed by GitHub
commit 9681309cde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 6 deletions

View File

@ -24,14 +24,13 @@ object Versions {
val dokkaPlugin = "1.5.0"
val taskTreePlugin = "1.5"
val kotlinBigNumVersion = "0.2.8"
val jna = "5.7.0"
val jna = "5.10.0"
val kotlinPoet = "1.6.0"
val sampleLibsodiumBindings = "0.8.5-SNAPSHOT"
val ktor = "1.3.2"
val timber = "4.7.1"
val kodeinVersion = "7.1.0"
val resourceLoader = "2.0.1"
val resourceLoader = "2.0.2"

View File

@ -159,7 +159,7 @@ actual object Signature {
*/
actual fun ed25519PkToCurve25519(ed25519PublicKey: UByteArray) : UByteArray {
val x25519PublicKey = UByteArray(crypto_scalarmult_curve25519_BYTES)
sodiumJna.crypto_sign_ed25519_sk_to_curve25519(
sodiumJna.crypto_sign_ed25519_pk_to_curve25519(
x25519PublicKey.asByteArray(),
ed25519PublicKey.asByteArray()
)

View File

@ -207,7 +207,7 @@ actual object Signature {
val x25519PublicKey = UByteArray(crypto_scalarmult_curve25519_BYTES)
val x25519PublicKeyPinned = x25519PublicKey.pin()
val ed25519PublicKeyPinned = ed25519PublicKey.pin()
crypto_sign_ed25519_sk_to_curve25519(
crypto_sign_ed25519_pk_to_curve25519(
x25519PublicKeyPinned.toPtr(),
ed25519PublicKeyPinned.toPtr()
)
@ -272,4 +272,4 @@ actual object Signature {
return publicKey
}
}
}