From b928421c58f65fe88bf1e924655c036410102f9c Mon Sep 17 00:00:00 2001 From: Kobi Gurkan Date: Sun, 1 Dec 2019 15:38:38 +0200 Subject: [PATCH] adds comment about baby pbk public key extraction --- circuits/babyjub.circom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuits/babyjub.circom b/circuits/babyjub.circom index 73cb84c..a9c0432 100644 --- a/circuits/babyjub.circom +++ b/circuits/babyjub.circom @@ -81,7 +81,7 @@ template BabyCheck() { a*x2 + y2 === 1 + d*x2*y2; } -// Extracts the public key from private key +// Extracts the public key from private key, as mentioned in https://tools.ietf.org/html/rfc8032 template BabyPbk() { signal private input in; signal output Ax;