* LocalIdentity:: writeTo( array ) and readFrom (array )

Bu işleme şunda yer alıyor:
Scott Powell
2025-01-16 01:59:11 +11:00
ebeveyn ec92bfa6b1
işleme 86f11d08aa
6 değiştirilmiş dosya ile 37 ekleme ve 0 silme
+7
Dosyayı Görüntüle
@@ -14,3 +14,10 @@ void ed25519_create_keypair(unsigned char *public_key, unsigned char *private_ke
ge_scalarmult_base(&A, private_key);
ge_p3_tobytes(public_key, &A);
}
void ed25519_derive_pub(unsigned char *public_key, const unsigned char *private_key) {
ge_p3 A;
ge_scalarmult_base(&A, private_key);
ge_p3_tobytes(public_key, &A);
}