feat: add custom C secp256k1 implementation for maximum platform performance
Add a complete C implementation of secp256k1 elliptic curve operations alongside the existing Kotlin implementation, enabling direct comparison and extraction of maximum performance from each platform (ARM64, x86_64). C Implementation (quartz/src/main/c/secp256k1/): - field.h/c: 5x52-bit limb field arithmetic with __int128 support and lazy reduction (12-bit headroom per limb vs Kotlin's fully-packed 4x64) - scalar.h/c: Scalar mod n arithmetic, GLV decomposition, wNAF encoding - point.h/c: Jacobian point operations (3M+4S double, 8M+3S mixed add), GLV+wNAF scalar multiplication, Strauss/Shamir dual scalar multiply, Montgomery batch-to-affine, precomputed G tables (wNAF-12) - schnorr.c: BIP-340 Schnorr sign/verify/verifyFast/verifyBatch with pubkey decompression cache and precomputed tag hash prefixes - sha256.c: Self-contained SHA-256 for BIP-340 tagged hashes - secp256k1_c.h: Public API matching the Kotlin Secp256k1 object - jni_bridge.c: JNI bridge for JVM/Android integration - benchmark.c: Standalone C benchmark (cmake build) - CMakeLists.txt: Build system with ARM64/x86_64 optimization flags Kotlin Integration: - Secp256k1InstanceC: expect/actual wrapper (commonMain/jvmMain/androidMain/nativeMain) - Secp256k1C: JVM JNI binding class - Secp256k1TripleBenchmark: Three-way JVM benchmark (ACINQ vs Kotlin vs Custom C) - Secp256k1CBenchmark: Android benchmark for the C implementation Current status: sign works correctly (verified against BIP-340 test vectors), verify path needs ecmult_double_g debugging (GLV wNAF-12 table issue). The comb table for ecmult_gen also needs fixing (currently falls back to GLV+wNAF). Field arithmetic is fully verified: 5x52 limbs with R=0x1000003D10 fold. https://claude.ai/code/session_011KVZhDcV2G7idNWEBz12GY
This commit is contained in:
+225
@@ -0,0 +1,225 @@
|
||||
/*
|
||||
* Copyright (c) 2025 Vitor Pamplona
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to use,
|
||||
* copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
||||
* Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
package com.vitorpamplona.quartz.benchmark
|
||||
|
||||
import androidx.benchmark.junit4.BenchmarkRule
|
||||
import androidx.benchmark.junit4.measureRepeated
|
||||
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||
import com.vitorpamplona.quartz.utils.Secp256k1InstanceC
|
||||
import com.vitorpamplona.quartz.utils.Secp256k1InstanceKotlin
|
||||
import fr.acinq.secp256k1.Secp256k1
|
||||
import org.junit.Rule
|
||||
import org.junit.Test
|
||||
import org.junit.runner.RunWith
|
||||
|
||||
/**
|
||||
* Android benchmark comparing three secp256k1 implementations:
|
||||
* 1. ACINQ C (libsecp256k1 via JNI) — "Foo"
|
||||
* 2. Pure Kotlin — "FooOurs"
|
||||
* 3. Custom C (our implementation via JNI) — "FooC"
|
||||
*
|
||||
* Run with: ./gradlew :benchmark:connectedAndroidTest
|
||||
*/
|
||||
@RunWith(AndroidJUnit4::class)
|
||||
class Secp256k1CBenchmark {
|
||||
@get:Rule
|
||||
val benchmarkRule = BenchmarkRule()
|
||||
|
||||
private val privKey = hexToBytes("67E56582298859DDAE725F972992A07C6C4FB9F62A8FFF58CE3CA926A1063530")
|
||||
private val msg32 = hexToBytes("243F6A8885A308D313198A2E03707344A4093822299F31D0082EFA98EC4E6C89")
|
||||
private val auxRand = hexToBytes("0000000000000000000000000000000000000000000000000000000000000001")
|
||||
|
||||
private val native = Secp256k1.get()
|
||||
private val nativePubKey = native.pubKeyCompress(native.pubkeyCreate(privKey))
|
||||
private val nativeXOnlyPub = nativePubKey.copyOfRange(1, 33)
|
||||
private val nativeSig = native.signSchnorr(msg32, privKey, auxRand)
|
||||
|
||||
private val kotlinSig =
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.signSchnorr(msg32, privKey, auxRand)
|
||||
private val kotlinXOnlyPub =
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.pubKeyCompress(
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.pubkeyCreate(privKey),
|
||||
).copyOfRange(1, 33)
|
||||
|
||||
// ==================== ACINQ C (Reference) ====================
|
||||
|
||||
@Test fun verifySchnorr() = benchmarkRule.measureRepeated { native.verifySchnorr(nativeSig, msg32, nativeXOnlyPub) }
|
||||
|
||||
@Test fun signSchnorr() = benchmarkRule.measureRepeated { native.signSchnorr(msg32, privKey, auxRand) }
|
||||
|
||||
@Test
|
||||
fun pubkeyCreate() = benchmarkRule.measureRepeated { native.pubKeyCompress(native.pubkeyCreate(privKey)) }
|
||||
|
||||
// ==================== Pure Kotlin ====================
|
||||
|
||||
@Test
|
||||
fun verifySchnorrOurs() =
|
||||
benchmarkRule.measureRepeated {
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.verifySchnorr(kotlinSig, msg32, kotlinXOnlyPub)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun verifySchnorrFastOurs() =
|
||||
benchmarkRule.measureRepeated {
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.verifySchnorrFast(kotlinSig, msg32, kotlinXOnlyPub)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun signSchnorrOurs() =
|
||||
benchmarkRule.measureRepeated {
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.signSchnorr(msg32, privKey, auxRand)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun signSchnorrXOnlyOurs() =
|
||||
benchmarkRule.measureRepeated {
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.signSchnorrWithXOnlyPubKey(msg32, privKey, kotlinXOnlyPub, auxRand)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun pubkeyCreateOurs() =
|
||||
benchmarkRule.measureRepeated {
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1.pubKeyCompress(
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.pubkeyCreate(privKey),
|
||||
)
|
||||
}
|
||||
|
||||
// ==================== Custom C (Our JNI) ====================
|
||||
|
||||
@Test
|
||||
fun verifySchnorrC() {
|
||||
Secp256k1InstanceC.init()
|
||||
val cSig = Secp256k1InstanceC.signSchnorr(msg32, privKey, auxRand)
|
||||
val cXOnly = Secp256k1InstanceC.compressedPubKeyFor(privKey).copyOfRange(1, 33)
|
||||
benchmarkRule.measureRepeated { Secp256k1InstanceC.verifySchnorr(cSig, msg32, cXOnly) }
|
||||
}
|
||||
|
||||
@Test
|
||||
fun verifySchnorrFastC() {
|
||||
Secp256k1InstanceC.init()
|
||||
val cSig = Secp256k1InstanceC.signSchnorr(msg32, privKey, auxRand)
|
||||
val cXOnly = Secp256k1InstanceC.compressedPubKeyFor(privKey).copyOfRange(1, 33)
|
||||
benchmarkRule.measureRepeated { Secp256k1InstanceC.verifySchnorrFast(cSig, msg32, cXOnly) }
|
||||
}
|
||||
|
||||
@Test
|
||||
fun signSchnorrC() {
|
||||
Secp256k1InstanceC.init()
|
||||
benchmarkRule.measureRepeated { Secp256k1InstanceC.signSchnorr(msg32, privKey, auxRand) }
|
||||
}
|
||||
|
||||
@Test
|
||||
fun signSchnorrXOnlyC() {
|
||||
Secp256k1InstanceC.init()
|
||||
val cXOnly = Secp256k1InstanceC.compressedPubKeyFor(privKey).copyOfRange(1, 33)
|
||||
benchmarkRule.measureRepeated { Secp256k1InstanceC.signSchnorrWithXOnlyPubKey(msg32, privKey, cXOnly, auxRand) }
|
||||
}
|
||||
|
||||
@Test
|
||||
fun pubkeyCreateC() {
|
||||
Secp256k1InstanceC.init()
|
||||
benchmarkRule.measureRepeated { Secp256k1InstanceC.compressedPubKeyFor(privKey) }
|
||||
}
|
||||
|
||||
@Test
|
||||
fun ecdhXOnlyC() {
|
||||
Secp256k1InstanceC.init()
|
||||
val pub2xOnly = hexToBytes("c2f9d9948dc8c7c38321e4b85c8558872eafa0641cd269db76848a6073e69133")
|
||||
benchmarkRule.measureRepeated { Secp256k1InstanceC.ecdhXOnly(pub2xOnly, privKey) }
|
||||
}
|
||||
|
||||
// ==================== Batch Verification (all three) ====================
|
||||
|
||||
@Test
|
||||
fun verifySchnorrBatch16Ours() {
|
||||
val sigs =
|
||||
(0 until 16).map { i ->
|
||||
val m = ByteArray(32) { (i * 7 + it).toByte() }
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.signSchnorr(m, privKey, auxRand)
|
||||
}
|
||||
val msgs = (0 until 16).map { i -> ByteArray(32) { (i * 7 + it).toByte() } }
|
||||
benchmarkRule.measureRepeated {
|
||||
Secp256k1InstanceKotlin.verifySchnorrBatch(kotlinXOnlyPub, sigs, msgs)
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
fun verifySchnorrBatch16C() {
|
||||
Secp256k1InstanceC.init()
|
||||
val cXOnly = Secp256k1InstanceC.compressedPubKeyFor(privKey).copyOfRange(1, 33)
|
||||
val sigs =
|
||||
(0 until 16).map { i ->
|
||||
val m = ByteArray(32) { (i * 7 + it).toByte() }
|
||||
Secp256k1InstanceC.signSchnorr(m, privKey, auxRand)
|
||||
}
|
||||
val msgs = (0 until 16).map { i -> ByteArray(32) { (i * 7 + it).toByte() } }
|
||||
benchmarkRule.measureRepeated {
|
||||
Secp256k1InstanceC.verifySchnorrBatch(cXOnly, sigs, msgs)
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
fun verifySchnorrBatch200Ours() {
|
||||
val sigs =
|
||||
(0 until 200).map { i ->
|
||||
val m = ByteArray(32) { (i * 7 + it).toByte() }
|
||||
com.vitorpamplona.quartz.utils.secp256k1.Secp256k1
|
||||
.signSchnorr(m, privKey, auxRand)
|
||||
}
|
||||
val msgs = (0 until 200).map { i -> ByteArray(32) { (i * 7 + it).toByte() } }
|
||||
benchmarkRule.measureRepeated {
|
||||
Secp256k1InstanceKotlin.verifySchnorrBatch(kotlinXOnlyPub, sigs, msgs)
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
fun verifySchnorrBatch200C() {
|
||||
Secp256k1InstanceC.init()
|
||||
val cXOnly = Secp256k1InstanceC.compressedPubKeyFor(privKey).copyOfRange(1, 33)
|
||||
val sigs =
|
||||
(0 until 200).map { i ->
|
||||
val m = ByteArray(32) { (i * 7 + it).toByte() }
|
||||
Secp256k1InstanceC.signSchnorr(m, privKey, auxRand)
|
||||
}
|
||||
val msgs = (0 until 200).map { i -> ByteArray(32) { (i * 7 + it).toByte() } }
|
||||
benchmarkRule.measureRepeated {
|
||||
Secp256k1InstanceC.verifySchnorrBatch(cXOnly, sigs, msgs)
|
||||
}
|
||||
}
|
||||
|
||||
private fun hexToBytes(hex: String): ByteArray {
|
||||
val len = hex.length / 2
|
||||
val result = ByteArray(len)
|
||||
for (i in 0 until len) {
|
||||
result[i] = hex.substring(i * 2, i * 2 + 2).toInt(16).toByte()
|
||||
}
|
||||
return result
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user