2020-04-17 05:43:30 +00:00
|
|
|
## Copyright (c) 2018-2020 Status Research & Development GmbH
|
|
|
|
## Licensed under either of
|
|
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
|
|
## at your option.
|
|
|
|
## This file may not be copied, modified, or distributed except according to
|
|
|
|
## those terms.
|
|
|
|
##
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
import
|
2020-07-06 13:07:29 +00:00
|
|
|
strformat, typetraits,
|
2020-04-17 05:43:30 +00:00
|
|
|
stew/[byteutils, objects, results],
|
|
|
|
./secp256k1_abi
|
|
|
|
|
|
|
|
from nimcrypto/utils import burnMem
|
|
|
|
|
|
|
|
export results
|
|
|
|
|
|
|
|
# Implementation notes
|
|
|
|
#
|
|
|
|
# The goal of this wrapper is to create a thin layer on top of the API presented
|
|
|
|
# in secp256k1_abi, exploiting some of its regulatities to make it slightly more
|
|
|
|
# convenient to use from Nim
|
|
|
|
#
|
2020-06-22 14:08:21 +00:00
|
|
|
# * Types like keys and signatures are guaranteed to hold valid values which
|
|
|
|
# simplifies reasoning about errors
|
|
|
|
# * An exception is keys that have been cleared - these are no longer valid
|
|
|
|
# to be passed as arguments to functions
|
|
|
|
# * TODO a sink that makes the compiler guarantee that `clear` is the last
|
|
|
|
# thing called on the instance
|
2020-04-17 05:43:30 +00:00
|
|
|
# * We hide raw pointer accesses and lengths behind nim types
|
|
|
|
# * We guarantee certain parameter properties, like not null and proper length,
|
|
|
|
# on the Nim side - in turn, we can rely on certain errors never happening in
|
|
|
|
# libsecp256k1, so we can skip checking for them
|
|
|
|
# * Functions like "fromRaw/toRaw" are balanced and will always rountrip
|
|
|
|
# * Functions like `fromRaw` are not called `init` because they may fail
|
|
|
|
# * No CatchableErrors
|
2020-06-22 14:08:21 +00:00
|
|
|
# * Where `secp256k1_context_no_precomp`, we surround the code with
|
|
|
|
# `{.noSideEffect.}` as the compiler cannot deduce that this is a constant
|
2018-03-03 09:04:09 +00:00
|
|
|
|
2020-03-08 18:26:54 +00:00
|
|
|
const
|
2020-04-17 05:43:30 +00:00
|
|
|
SkRawSecretKeySize* = 32 # 256 div 8
|
|
|
|
## Size of private key in octets (bytes)
|
|
|
|
SkRawSignatureSize* = 64
|
|
|
|
## Compact serialized non-recoverable signature
|
|
|
|
SkDerSignatureMaxSize* = 72
|
|
|
|
## Max bytes in DER encoding
|
2018-01-05 01:02:25 +00:00
|
|
|
|
2020-04-17 05:43:30 +00:00
|
|
|
SkRawRecoverableSignatureSize* = 65
|
|
|
|
## Size of recoverable signature in octets (bytes)
|
2018-01-05 01:02:25 +00:00
|
|
|
|
2020-04-17 05:43:30 +00:00
|
|
|
SkRawPublicKeySize* = 65
|
|
|
|
## Size of uncompressed public key in octets (bytes)
|
2020-03-08 20:22:50 +00:00
|
|
|
|
2020-04-17 05:43:30 +00:00
|
|
|
SkRawCompressedPublicKeySize* = 33
|
|
|
|
## Size of compressed public key in octets (bytes)
|
2018-03-03 09:04:09 +00:00
|
|
|
|
2020-04-17 05:43:30 +00:00
|
|
|
SkMessageSize* = 32
|
|
|
|
## Size of message that can be signed
|
2018-01-05 01:02:25 +00:00
|
|
|
|
2020-04-17 05:43:30 +00:00
|
|
|
SkEdchSecretSize* = 32
|
|
|
|
## ECDH-agreed key size
|
2020-04-11 14:38:24 +00:00
|
|
|
|
2020-04-17 05:43:30 +00:00
|
|
|
SkEcdhRawSecretSize* = 33
|
|
|
|
## ECDH-agreed raw key size
|
2018-03-12 14:49:30 +00:00
|
|
|
|
|
|
|
type
|
2020-06-22 14:08:21 +00:00
|
|
|
SkPublicKey* {.requiresInit.} = object
|
2020-04-17 05:43:30 +00:00
|
|
|
## Representation of public key.
|
2020-06-22 14:08:21 +00:00
|
|
|
data: secp256k1_pubkey
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
SkSecretKey* {.requiresInit.} = object
|
2020-04-17 05:43:30 +00:00
|
|
|
## Representation of secret key.
|
2020-06-22 14:08:21 +00:00
|
|
|
data: array[SkRawSecretKeySize, byte]
|
2020-04-17 05:43:30 +00:00
|
|
|
|
|
|
|
SkKeyPair* = object
|
|
|
|
## Representation of private/public keys pair.
|
|
|
|
seckey*: SkSecretKey
|
|
|
|
pubkey*: SkPublicKey
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
SkSignature* {.requiresInit.} = object
|
2020-04-17 05:43:30 +00:00
|
|
|
## Representation of non-recoverable signature.
|
2020-06-22 14:08:21 +00:00
|
|
|
data: secp256k1_ecdsa_signature
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
SkRecoverableSignature* {.requiresInit.} = object
|
2020-04-17 05:43:30 +00:00
|
|
|
## Representation of recoverable signature.
|
2020-06-22 14:08:21 +00:00
|
|
|
data: secp256k1_ecdsa_recoverable_signature
|
2020-04-17 05:43:30 +00:00
|
|
|
|
|
|
|
SkContext* = ref object
|
|
|
|
## Representation of Secp256k1 context object.
|
|
|
|
context: ptr secp256k1_context
|
|
|
|
|
2020-07-06 13:07:29 +00:00
|
|
|
SkMessage* = distinct array[SkMessageSize, byte]
|
2020-04-17 05:43:30 +00:00
|
|
|
## Message that can be signed or verified
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
SkEcdhSecret* {.requiresInit.} = object
|
2020-04-17 05:43:30 +00:00
|
|
|
## Representation of ECDH shared secret
|
|
|
|
data*: array[SkEdchSecretSize, byte]
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
SkEcdhRawSecret* {.requiresInit.} = object
|
2020-04-17 05:43:30 +00:00
|
|
|
## Representation of ECDH shared secret, with leading `y` byte
|
|
|
|
# (`y` is 0x02 when pubkey.y is even or 0x03 when odd)
|
|
|
|
data*: array[SkEcdhRawSecretSize, byte]
|
|
|
|
|
|
|
|
SkResult*[T] = Result[T, cstring]
|
|
|
|
|
|
|
|
##
|
|
|
|
## Private procedures interface
|
|
|
|
##
|
|
|
|
|
|
|
|
var secpContext {.threadvar.}: SkContext
|
|
|
|
## Thread local variable which holds current context
|
|
|
|
|
|
|
|
proc illegalCallback(message: cstring, data: pointer) {.cdecl, raises: [].} =
|
2020-06-22 14:08:21 +00:00
|
|
|
# Internal panic - should never happen - all objects we pass into functions
|
|
|
|
# are guaranteed valid per their type
|
|
|
|
echo message
|
|
|
|
echo getStackTrace()
|
|
|
|
quit 1
|
2020-04-17 05:43:30 +00:00
|
|
|
|
|
|
|
proc errorCallback(message: cstring, data: pointer) {.cdecl, raises: [].} =
|
|
|
|
# Internal panic - should never happen
|
|
|
|
echo message
|
|
|
|
echo getStackTrace()
|
|
|
|
quit 1
|
|
|
|
|
|
|
|
template ptr0(v: array|openArray): ptr cuchar =
|
|
|
|
cast[ptr cuchar](unsafeAddr v[0])
|
|
|
|
|
2020-07-06 13:07:29 +00:00
|
|
|
template ptr0(v: SkMessage): ptr cuchar =
|
|
|
|
ptr0(distinctBase(v))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func shutdownLibsecp256k1(ctx: SkContext) =
|
2020-04-17 05:43:30 +00:00
|
|
|
# TODO: use destructor when finalizer are deprecated for destructors
|
|
|
|
if not(isNil(ctx.context)):
|
|
|
|
secp256k1_context_destroy(ctx.context)
|
|
|
|
|
|
|
|
proc newSkContext(): SkContext =
|
|
|
|
## Create new Secp256k1 context object.
|
|
|
|
new(result, shutdownLibsecp256k1)
|
|
|
|
let flags = cuint(SECP256K1_CONTEXT_VERIFY or SECP256K1_CONTEXT_SIGN)
|
|
|
|
result.context = secp256k1_context_create(flags)
|
|
|
|
secp256k1_context_set_illegal_callback(
|
|
|
|
result.context, illegalCallback, cast[pointer](result))
|
|
|
|
secp256k1_context_set_error_callback(
|
|
|
|
result.context, errorCallback, cast[pointer](result))
|
|
|
|
|
|
|
|
func getContext(): ptr secp256k1_context =
|
|
|
|
## Get current `EccContext`
|
2020-06-22 14:08:21 +00:00
|
|
|
{.noSideEffect.}:
|
|
|
|
# TODO modifying the secp context here is a side effect, but not
|
|
|
|
# necessarily an observable one, since the modification is done to
|
|
|
|
# a thread-local variable that is only updated from within here.
|
|
|
|
# Technically, it should be possible to precompute a static context
|
|
|
|
# at compile time and use that instead, which would turn this into
|
|
|
|
# a truly side-effect-free function, instead of an as-if-free one.
|
2020-04-17 05:43:30 +00:00
|
|
|
if isNil(secpContext):
|
|
|
|
secpContext = newSkContext()
|
|
|
|
secpContext.context
|
|
|
|
|
2020-06-22 14:59:37 +00:00
|
|
|
func fromHex*(T: type seq[byte], s: string): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
# TODO move this to some common location and return a general error?
|
|
|
|
try:
|
|
|
|
ok(hexToSeqByte(s))
|
|
|
|
except CatchableError:
|
|
|
|
err("secp: cannot parse hex string")
|
|
|
|
|
2020-07-06 13:07:29 +00:00
|
|
|
type
|
|
|
|
Rng* = proc(data: var openArray[byte]): bool {.raises: [Defect], gcsafe.}
|
|
|
|
## A function that fills data with random bytes from a cryptographically
|
|
|
|
## secure source or returns false
|
|
|
|
|
|
|
|
FoolproofRng* = proc(data: var openArray[byte]) {.raises: [Defect], gcsafe.}
|
|
|
|
## The world will run out of fools before this RNG fails!
|
|
|
|
|
|
|
|
proc random*(T: type SkSecretKey, rng: Rng): SkResult[T] =
|
|
|
|
## Generates new random private key - a cryptographically secure RNG should be
|
|
|
|
## used - see nimcrypto or bearssl for good RNG's.
|
|
|
|
##
|
|
|
|
## The random number generator in the Nim standard library `random` module is
|
|
|
|
## not cryptographically secure.
|
|
|
|
##
|
|
|
|
## This function may fail to generate a valid key if the RNG fails. In the
|
|
|
|
## current version, the random number generation will be called in a loop
|
|
|
|
## which may be vulnerable to timing attacks. Generate your keys elsewhere
|
|
|
|
## if this is a issue.
|
2020-06-22 14:08:21 +00:00
|
|
|
var data{.noinit.}: array[SkRawSecretKeySize, byte]
|
|
|
|
|
2020-07-06 13:07:29 +00:00
|
|
|
while rng(data):
|
2020-06-22 14:08:21 +00:00
|
|
|
if secp256k1_ec_seckey_verify(secp256k1_context_no_precomp, data.ptr0) == 1:
|
|
|
|
return ok(T(data: data))
|
2020-04-17 05:43:30 +00:00
|
|
|
|
|
|
|
return err("secp: cannot get random bytes for key")
|
|
|
|
|
2020-07-06 13:07:29 +00:00
|
|
|
proc random*(T: type SkSecretKey, rng: FoolproofRng): T =
|
|
|
|
## Generates new random private key - a cryptographically secure RNG should be
|
|
|
|
## used - see nimcrypto or bearssl for good RNG's.
|
|
|
|
##
|
|
|
|
## The random number generator in the Nim standard library `random` module is
|
|
|
|
## not cryptographically secure.
|
|
|
|
##
|
|
|
|
## This function may fail to generate a valid key if the RNG fails, in which
|
|
|
|
## case it will raise a Defect.
|
|
|
|
##
|
|
|
|
## In the current version, the random number generation will be called in a
|
|
|
|
## loop which may be vulnerable to timing attacks. Generate your keys
|
|
|
|
## elsewhere if this is a issue.
|
|
|
|
var data{.noinit.}: array[SkRawSecretKeySize, byte]
|
|
|
|
|
|
|
|
for _ in 0..1000*1000:
|
|
|
|
rng(data)
|
|
|
|
if secp256k1_ec_seckey_verify(secp256k1_context_no_precomp, data.ptr0) == 1:
|
|
|
|
return T(data: data)
|
|
|
|
|
|
|
|
result = T(data: default(array[32, byte])) # Silence compiler
|
|
|
|
# All-zeroes all the time for example will break this function
|
|
|
|
raiseAssert "RNG not giving random enough bytes, can't create valid key"
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromRaw*(T: type SkSecretKey, data: openArray[byte]): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Load a valid private key, as created by `toRaw`
|
|
|
|
if len(data) < SkRawSecretKeySize:
|
|
|
|
return err(static(&"secp: raw private key should be {SkRawSecretKeySize} bytes"))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
if secp256k1_ec_seckey_verify(secp256k1_context_no_precomp, data.ptr0) != 1:
|
|
|
|
return err("secp: invalid private key")
|
2020-04-17 05:43:30 +00:00
|
|
|
|
|
|
|
ok(T(data: toArray(32, data.toOpenArray(0, SkRawSecretKeySize - 1))))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromHex*(T: type SkSecretKey, data: string): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Initialize Secp256k1 `private key` ``key`` from hexadecimal string
|
|
|
|
## representation ``data``.
|
|
|
|
T.fromRaw(? seq[byte].fromHex(data))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toRaw*(seckey: SkSecretKey): array[SkRawSecretKeySize, byte] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Serialize Secp256k1 `private key` ``key`` to raw binary form
|
|
|
|
seckey.data
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toHex*(seckey: SkSecretKey): string =
|
2020-04-17 05:43:30 +00:00
|
|
|
toHex(toRaw(seckey))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toPublicKey*(key: SkSecretKey): SkPublicKey =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Calculate and return Secp256k1 `public key` from `private key` ``key``.
|
2020-06-22 14:08:21 +00:00
|
|
|
var pubkey {.noinit.}: secp256k1_pubkey
|
|
|
|
let res = secp256k1_ec_pubkey_create(
|
|
|
|
getContext(), addr pubkey, key.data.ptr0)
|
|
|
|
doAssert res == 1, "Valid private keys should always have a corresponding pub"
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
SkPublicKey(data: pubkey)
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromRaw*(T: type SkPublicKey, data: openArray[byte]): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Initialize Secp256k1 `public key` ``key`` from raw binary
|
|
|
|
## representation ``data``, which may be compressed, uncompressed or hybrid
|
|
|
|
if len(data) < SkRawCompressedPublicKeySize:
|
|
|
|
return err(static(
|
|
|
|
&"secp: public key must be {SkRawCompressedPublicKeySize} or {SkRawPublicKeySize} bytes"))
|
|
|
|
|
|
|
|
var length: int
|
|
|
|
if data[0] == 0x02'u8 or data[0] == 0x03'u8:
|
|
|
|
length = min(len(data), SkRawCompressedPublicKeySize)
|
|
|
|
elif data[0] == 0x04'u8 or data[0] == 0x06'u8 or data[0] == 0x07'u8:
|
|
|
|
length = min(len(data), SkRawPublicKeySize)
|
|
|
|
else:
|
|
|
|
return err("secp: public key format not recognised")
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
var key {.noinit.}: secp256k1_pubkey
|
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
if secp256k1_ec_pubkey_parse(
|
|
|
|
secp256k1_context_no_precomp, addr key, data.ptr0, csize_t(length)) != 1:
|
|
|
|
return err("secp: cannot parse public key")
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
ok(SkPublicKey(data: key))
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromHex*(T: type SkPublicKey, data: string): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Initialize Secp256k1 `public key` ``key`` from hexadecimal string
|
|
|
|
## representation ``data``.
|
|
|
|
T.fromRaw(? seq[byte].fromHex(data))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toRaw*(pubkey: SkPublicKey): array[SkRawPublicKeySize, byte] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Serialize Secp256k1 `public key` ``key`` to raw uncompressed form
|
|
|
|
var length = csize_t(len(result))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
let res = secp256k1_ec_pubkey_serialize(
|
|
|
|
secp256k1_context_no_precomp, result.ptr0, addr length,
|
|
|
|
unsafeAddr pubkey.data, SECP256K1_EC_UNCOMPRESSED)
|
|
|
|
doAssert res == 1, "Can't fail, per documentation"
|
|
|
|
|
|
|
|
func toHex*(pubkey: SkPublicKey): string =
|
2020-04-17 05:43:30 +00:00
|
|
|
toHex(toRaw(pubkey))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toRawCompressed*(pubkey: SkPublicKey): array[SkRawCompressedPublicKeySize, byte] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Serialize Secp256k1 `public key` ``key`` to raw compressed form
|
|
|
|
var length = csize_t(len(result))
|
2020-06-22 14:08:21 +00:00
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
let res = secp256k1_ec_pubkey_serialize(
|
|
|
|
secp256k1_context_no_precomp, result.ptr0, addr length,
|
|
|
|
unsafeAddr pubkey.data, SECP256K1_EC_COMPRESSED)
|
|
|
|
doAssert res == 1, "Can't fail, per documentation"
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toHexCompressed*(pubkey: SkPublicKey): string =
|
2020-04-17 05:43:30 +00:00
|
|
|
toHex(toRawCompressed(pubkey))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromRaw*(T: type SkSignature, data: openArray[byte]): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Load compact signature from data
|
|
|
|
if data.len() < SkRawSignatureSize:
|
|
|
|
return err(static(&"secp: signature must be {SkRawSignatureSize} bytes"))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
var sig {.noinit.}: secp256k1_ecdsa_signature
|
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
if secp256k1_ecdsa_signature_parse_compact(
|
|
|
|
secp256k1_context_no_precomp, addr sig, data.ptr0) != 1:
|
|
|
|
return err("secp: cannot parse signaure")
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
ok(T(data: sig))
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromDer*(T: type SkSignature, data: openarray[byte]): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Initialize Secp256k1 `signature` ``sig`` from DER
|
|
|
|
## representation ``data``.
|
|
|
|
if len(data) < 1:
|
|
|
|
return err("secp: DER signature too short")
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
var sig {.noinit.}: secp256k1_ecdsa_signature
|
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
if secp256k1_ecdsa_signature_parse_der(
|
|
|
|
secp256k1_context_no_precomp, addr sig, data.ptr0, csize_t(len(data))) != 1:
|
|
|
|
return err("secp: cannot parse DER signature")
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
ok(T(data: sig))
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromHex*(T: type SkSignature, data: string): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Initialize Secp256k1 `signature` ``sig`` from hexadecimal string
|
|
|
|
## representation ``data``.
|
|
|
|
T.fromRaw(? seq[byte].fromHex(data))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toRaw*(sig: SkSignature): array[SkRawSignatureSize, byte] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Serialize signature to compact binary form
|
2020-06-22 14:08:21 +00:00
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
let res = secp256k1_ecdsa_signature_serialize_compact(
|
|
|
|
secp256k1_context_no_precomp, result.ptr0, unsafeAddr sig.data)
|
|
|
|
doAssert res == 1, "Can't fail, per documentation"
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toDer*(sig: SkSignature, data: var openarray[byte]): int =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Serialize Secp256k1 `signature` ``sig`` to raw binary form and store it
|
|
|
|
## to ``data``.
|
2018-03-21 09:42:07 +00:00
|
|
|
##
|
2020-06-22 14:08:21 +00:00
|
|
|
## Returns number of bytes (octets) needed to store secp256k1 signature - if
|
|
|
|
## this is more than `data.len`, `data` is not written to.
|
2020-04-17 05:43:30 +00:00
|
|
|
var buffer: array[SkDerSignatureMaxSize, byte]
|
|
|
|
var plength = csize_t(len(buffer))
|
2020-06-22 14:08:21 +00:00
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
let res = secp256k1_ecdsa_signature_serialize_der(
|
|
|
|
secp256k1_context_no_precomp, buffer.ptr0, addr plength,
|
|
|
|
unsafeAddr sig.data)
|
|
|
|
doAssert res == 1, "Can't fail, per documentation"
|
2020-04-17 05:43:30 +00:00
|
|
|
result = int(plength)
|
|
|
|
if len(data) >= result:
|
|
|
|
copyMem(addr data[0], addr buffer[0], result)
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toDer*(sig: SkSignature): seq[byte] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Serialize Secp256k1 `signature` and return it.
|
|
|
|
result = newSeq[byte](72)
|
|
|
|
let length = toDer(sig, result)
|
|
|
|
result.setLen(length)
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toHex*(sig: SkSignature): string =
|
2020-04-17 05:43:30 +00:00
|
|
|
toHex(toRaw(sig))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromRaw*(T: type SkRecoverableSignature, data: openArray[byte]): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
if data.len() < SkRawRecoverableSignatureSize:
|
|
|
|
return err(
|
|
|
|
static(&"secp: recoverable signature must be {SkRawRecoverableSignatureSize} bytes"))
|
|
|
|
|
|
|
|
let recid = cint(data[64])
|
2020-06-22 14:08:21 +00:00
|
|
|
var sig {.noinit.}: secp256k1_ecdsa_recoverable_signature
|
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
if secp256k1_ecdsa_recoverable_signature_parse_compact(
|
|
|
|
secp256k1_context_no_precomp, addr sig, data.ptr0, recid) != 1:
|
|
|
|
return err("secp: invalid recoverable signature")
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
ok(T(data: sig))
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromHex*(T: type SkRecoverableSignature, data: string): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Initialize Secp256k1 `signature` ``sig`` from hexadecimal string
|
|
|
|
## representation ``data``.
|
|
|
|
T.fromRaw(? seq[byte].fromHex(data))
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toRaw*(sig: SkRecoverableSignature): array[SkRawRecoverableSignatureSize, byte] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Converts recoverable signature to compact binary form
|
|
|
|
var recid = cint(0)
|
2020-06-22 14:08:21 +00:00
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
let res = secp256k1_ecdsa_recoverable_signature_serialize_compact(
|
|
|
|
secp256k1_context_no_precomp, result.ptr0, addr recid, unsafeAddr sig.data)
|
|
|
|
doAssert res == 1, "can't fail, per documentation"
|
|
|
|
|
2020-04-17 05:43:30 +00:00
|
|
|
result[64] = byte(recid)
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func toHex*(sig: SkRecoverableSignature): string =
|
2020-04-17 05:43:30 +00:00
|
|
|
toHex(toRaw(sig))
|
|
|
|
|
2020-07-06 13:07:29 +00:00
|
|
|
proc random*(T: type SkKeyPair, rng: Rng): SkResult[T] =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Generates new random key pair.
|
2020-07-06 13:07:29 +00:00
|
|
|
let seckey = ? SkSecretKey.random(rng)
|
2020-04-17 05:43:30 +00:00
|
|
|
ok(T(
|
|
|
|
seckey: seckey,
|
2020-06-22 14:08:21 +00:00
|
|
|
pubkey: seckey.toPublicKey()
|
2020-04-17 05:43:30 +00:00
|
|
|
))
|
|
|
|
|
2020-07-06 13:07:29 +00:00
|
|
|
proc random*(T: type SkKeyPair, rng: FoolproofRng): T =
|
|
|
|
## Generates new random key pair.
|
|
|
|
let seckey = SkSecretKey.random(rng)
|
|
|
|
T(
|
|
|
|
seckey: seckey,
|
|
|
|
pubkey: seckey.toPublicKey()
|
|
|
|
)
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func `==`*(lhs, rhs: SkPublicKey): bool =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Compare Secp256k1 `public key` objects for equality.
|
|
|
|
lhs.toRaw() == rhs.toRaw()
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func `==`*(lhs, rhs: SkSignature): bool =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Compare Secp256k1 `signature` objects for equality.
|
|
|
|
lhs.toRaw() == rhs.toRaw()
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func `==`*(lhs, rhs: SkRecoverableSignature): bool =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Compare Secp256k1 `recoverable signature` objects for equality.
|
|
|
|
lhs.toRaw() == rhs.toRaw()
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func sign*(key: SkSecretKey, msg: SkMessage): SkSignature =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Sign message `msg` using private key `key` and return signature object.
|
2020-07-06 13:07:29 +00:00
|
|
|
## It is recommended that `msg` is produced by hashing the input data to
|
|
|
|
## a 32-byte hash, like sha256.
|
2020-06-22 14:08:21 +00:00
|
|
|
var data {.noinit.}: secp256k1_ecdsa_signature
|
|
|
|
let res = secp256k1_ecdsa_sign(
|
2020-07-06 13:07:29 +00:00
|
|
|
getContext(), addr data, msg.ptr0, key.data.ptr0, nil, nil)
|
2020-06-22 14:08:21 +00:00
|
|
|
doAssert res == 1, "cannot create signature, key invalid?"
|
|
|
|
SkSignature(data: data)
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func signRecoverable*(key: SkSecretKey, msg: SkMessage): SkRecoverableSignature =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Sign message `msg` using private key `key` and return signature object.
|
2020-06-22 14:08:21 +00:00
|
|
|
var data {.noinit.}: secp256k1_ecdsa_recoverable_signature
|
|
|
|
let res = secp256k1_ecdsa_sign_recoverable(
|
2020-07-06 13:07:29 +00:00
|
|
|
getContext(), addr data, msg.ptr0, key.data.ptr0, nil, nil)
|
2020-06-22 14:08:21 +00:00
|
|
|
doAssert res == 1, "cannot create recoverable signature, key invalid?"
|
|
|
|
SkRecoverableSignature(data: data)
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func verify*(sig: SkSignature, msg: SkMessage, key: SkPublicKey): bool =
|
2020-04-17 05:43:30 +00:00
|
|
|
secp256k1_ecdsa_verify(
|
2020-07-06 13:07:29 +00:00
|
|
|
getContext(), unsafeAddr sig.data, msg.ptr0, unsafeAddr key.data) == 1
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func recover*(sig: SkRecoverableSignature, msg: SkMessage): SkResult[SkPublicKey] =
|
|
|
|
var data {.noinit.}: secp256k1_pubkey
|
2020-04-17 05:43:30 +00:00
|
|
|
if secp256k1_ecdsa_recover(
|
2020-07-06 13:07:29 +00:00
|
|
|
getContext(), addr data, unsafeAddr sig.data, msg.ptr0) != 1:
|
2020-04-17 05:43:30 +00:00
|
|
|
return err("secp: cannot recover public key from signature")
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
ok(SkPublicKey(data: data))
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func ecdh*(seckey: SkSecretKey, pubkey: SkPublicKey): SkEcdhSecret =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Calculate ECDH shared secret.
|
2020-06-22 14:08:21 +00:00
|
|
|
var secret {.noinit.}: array[SkEdchSecretSize, byte]
|
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
let res = secp256k1_ecdh(
|
|
|
|
secp256k1_context_no_precomp, secret.ptr0, unsafeAddr pubkey.data,
|
|
|
|
seckey.data.ptr0)
|
|
|
|
doAssert res == 1, "cannot compute ECDH secret, keys invalid?"
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
SkEcdhSecret(data: secret)
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func ecdhRaw*(seckey: SkSecretKey, pubkey: SkPublicKey): SkEcdhRawSecret =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Calculate ECDH shared secret, ethereum style
|
|
|
|
# TODO - deprecate: https://github.com/status-im/nim-eth/issues/222
|
2020-06-22 14:08:21 +00:00
|
|
|
var secret {.noinit.}: array[SkEcdhRawSecretSize, byte]
|
|
|
|
{.noSideEffect.}: # secp256k1_context_no_precomp is actually const, see above
|
|
|
|
let res = secp256k1_ecdh_raw(
|
|
|
|
secp256k1_context_no_precomp, secret.ptr0, unsafeAddr pubkey.data,
|
|
|
|
seckey.data.ptr0)
|
|
|
|
doAssert res == 1, "cannot compute raw ECDH secret, keys invalid?"
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
SkEcdhRawSecret(data: secret)
|
2020-04-17 05:43:30 +00:00
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func clear*(v: var SkSecretKey) =
|
2020-04-17 05:43:30 +00:00
|
|
|
## Wipe and clear memory of Secp256k1 `private key`.
|
2020-06-22 14:08:21 +00:00
|
|
|
## After calling this function, the key is invalid and using it elsewhere will
|
|
|
|
## result in undefined behaviour or Defect
|
2020-04-17 05:43:30 +00:00
|
|
|
burnMem(v.data)
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func clear*(v: var SkEcdhSecret) =
|
|
|
|
## Wipe and clear memory of ECDH `shared secret`.
|
|
|
|
## After calling this function, the key is invalid and using it elsewhere will
|
|
|
|
## result in undefined behaviour or Defect
|
2020-04-17 05:43:30 +00:00
|
|
|
burnMem(v.data)
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func clear*(v: var SkEcdhRawSecret) =
|
|
|
|
## Wipe and clear memory of ECDH `shared secret`.
|
|
|
|
## After calling this function, the key is invalid and using it elsewhere will
|
|
|
|
## result in undefined behaviour or Defect
|
2020-04-17 05:43:30 +00:00
|
|
|
burnMem(v.data)
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func `$`*(
|
2020-04-17 05:43:30 +00:00
|
|
|
v: SkPublicKey | SkSecretKey | SkSignature | SkRecoverableSignature): string =
|
|
|
|
toHex(v)
|
|
|
|
|
2020-06-22 14:08:21 +00:00
|
|
|
func fromBytes*(T: type SkMessage, data: openArray[byte]): SkResult[SkMessage] =
|
2020-04-17 05:43:30 +00:00
|
|
|
if data.len() != SkMessageSize:
|
|
|
|
return err("Message must be 32 bytes")
|
|
|
|
|
2020-07-06 13:07:29 +00:00
|
|
|
ok(SkMessage(toArray(SkMessageSize, data)))
|
2020-06-22 14:08:21 +00:00
|
|
|
|
|
|
|
# Close `requiresInit` loophole
|
|
|
|
# TODO replace `requiresInit` with a pragma that does the expected thing
|
|
|
|
proc default*(T: type SkPublicKey): T {.error: "loophole".}
|
|
|
|
proc default*(T: type SkSecretKey): T {.error: "loophole".}
|
|
|
|
proc default*(T: type SkSignature): T {.error: "loophole".}
|
|
|
|
proc default*(T: type SkRecoverableSignature): T {.error: "loophole".}
|
|
|
|
proc default*(T: type SkEcdhSecret): T {.error: "loophole".}
|
|
|
|
proc default*(T: type SkEcdhRawSecret): T {.error: "loophole".}
|