From 4b2e88f97cc31edb84da23b797b99115507e0e28 Mon Sep 17 00:00:00 2001 From: Vincent Bernardoff Date: Wed, 30 May 2018 18:03:23 +0200 Subject: [PATCH] Signature: export `of_secp256k1` and `of_ed25519` --- src/lib_crypto/signature.mli | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib_crypto/signature.mli b/src/lib_crypto/signature.mli index ac20562d3..52b43130f 100644 --- a/src/lib_crypto/signature.mli +++ b/src/lib_crypto/signature.mli @@ -45,6 +45,10 @@ val concat : MBytes.t -> t -> MBytes.t include S.RAW_DATA with type t := t +val of_secp256k1 : Secp256k1.t -> t +val of_ed25519 : Ed25519.t -> t +val of_p256 : P256.t -> t + type algo = | Ed25519 | Secp256k1