166 lines
4.0 KiB
C++
166 lines
4.0 KiB
C++
|
/*
|
||
|
* Copyright (c) 2012-2020 MIRACL UK Ltd.
|
||
|
*
|
||
|
* This file is part of MIRACL Core
|
||
|
* (see https://github.com/miracl/core).
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
/* Boneh-Lynn-Shacham signature 128-bit API */
|
||
|
|
||
|
/* Loosely (for now) following https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-bls-signature-00 */
|
||
|
|
||
|
// Minimal-pubkey-size variant
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include "bls_ZZZ.h"
|
||
|
|
||
|
using namespace XXX;
|
||
|
using namespace YYY;
|
||
|
|
||
|
#define CEIL(a,b) (((a)-1)/(b)+1)
|
||
|
|
||
|
/* output u[i] \in F_p */
|
||
|
/* https://datatracker.ietf.org/doc/draft-irtf-cfrg-hash-to-curve/ */
|
||
|
static void hash_to_field(int hash,int hlen,FP2 *u,octet *DST,octet *M, int ctr)
|
||
|
{
|
||
|
int i,j,k,L,nbq;
|
||
|
BIG q,a[2];
|
||
|
DBIG dx;
|
||
|
char okm[512],fd[128];
|
||
|
octet OKM = {0,sizeof(okm),okm};
|
||
|
|
||
|
BIG_rcopy(q, Modulus);
|
||
|
nbq=BIG_nbits(q);
|
||
|
L=CEIL(nbq+CURVE_SECURITY_ZZZ,8);
|
||
|
|
||
|
XMD_Expand(hash,hlen,&OKM,L*ctr*2,DST,M);
|
||
|
for (i=0;i<ctr;i++)
|
||
|
{
|
||
|
for (k=0;k<2;k++)
|
||
|
{
|
||
|
for (j=0;j<L;j++)
|
||
|
fd[j]=OKM.val[(2*i+k)*L+j];
|
||
|
|
||
|
BIG_dfromBytesLen(dx,fd,L);
|
||
|
BIG_ctdmod(a[k],dx,q,8*L-nbq);
|
||
|
}
|
||
|
FP2_from_BIGs(&u[i],a[0],a[1]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* hash a message to an ECP2 point, using SHA2, random oracle method */
|
||
|
static void BLS_HASH_TO_POINT(ECP2 *P, octet *M)
|
||
|
{
|
||
|
FP2 u[2];
|
||
|
ECP2 P1;
|
||
|
char dst[50];
|
||
|
octet DST = {0,sizeof(dst),dst};
|
||
|
|
||
|
OCT_jstring(&DST,(char *)"BLS_SIG_ZZZG2_XMD:SHA256-SVDW-RO-_NUL_");
|
||
|
hash_to_field(MC_SHA2,HASH_TYPE_ZZZ,u,&DST,M,2);
|
||
|
|
||
|
ECP2_map2point(P,&u[0]);
|
||
|
ECP2_map2point(&P1,&u[1]);
|
||
|
|
||
|
ECP2_add(P,&P1);
|
||
|
ECP2_cfp(P);
|
||
|
ECP2_affine(P);
|
||
|
}
|
||
|
|
||
|
int ZZZ::BLS_INIT()
|
||
|
{
|
||
|
return BLS_OK;
|
||
|
}
|
||
|
|
||
|
/* generate key pair, private key S, public key W */
|
||
|
int ZZZ::BLS_KEY_PAIR_GENERATE(octet *IKM, octet* S, octet *W)
|
||
|
{
|
||
|
int nbr,L;
|
||
|
BIG r,s;
|
||
|
DBIG dx;
|
||
|
ECP G;
|
||
|
char salt[20],prk[HASH_TYPE_ZZZ],okm[128],aikm[65],len[2];
|
||
|
octet SALT = {0,sizeof(salt),salt};
|
||
|
octet PRK = {0,sizeof(prk),prk};
|
||
|
octet OKM = {0,sizeof(okm),okm};
|
||
|
octet AIKM = {0,sizeof(aikm),aikm};
|
||
|
octet LEN = {0,sizeof(len),len};
|
||
|
|
||
|
OCT_copy(&AIKM,IKM);
|
||
|
OCT_jbyte(&AIKM,0,1);
|
||
|
|
||
|
BIG_rcopy(r, CURVE_Order);
|
||
|
nbr=BIG_nbits(r);
|
||
|
L=CEIL(3*CEIL(nbr,8),2);
|
||
|
OCT_jint(&LEN,L,2);
|
||
|
|
||
|
if (!ECP_generator(&G)) return BLS_FAIL;
|
||
|
|
||
|
OCT_jstring(&SALT,(char *)"BLS-SIG-KEYGEN-SALT-");
|
||
|
HKDF_Extract(MC_SHA2,HASH_TYPE_ZZZ,&PRK,&SALT,&AIKM);
|
||
|
HKDF_Expand(MC_SHA2,HASH_TYPE_ZZZ,&OKM,L,&PRK,&LEN);
|
||
|
|
||
|
BIG_dfromBytesLen(dx,OKM.val,L);
|
||
|
BIG_ctdmod(s,dx,r,8*L-nbr);
|
||
|
BIG_toBytes(S->val, s);
|
||
|
S->len = MODBYTES_XXX;
|
||
|
|
||
|
// SkToPk
|
||
|
|
||
|
PAIR_G1mul(&G, s);
|
||
|
ECP_toOctet(W, &G, true);
|
||
|
return BLS_OK;
|
||
|
}
|
||
|
|
||
|
/* Sign message M using private key S to produce signature SIG */
|
||
|
|
||
|
int ZZZ::BLS_CORE_SIGN(octet *SIG, octet *M, octet *S)
|
||
|
{
|
||
|
BIG s;
|
||
|
ECP2 D;
|
||
|
BLS_HASH_TO_POINT(&D, M);
|
||
|
BIG_fromBytes(s, S->val);
|
||
|
PAIR_G2mul(&D, s);
|
||
|
|
||
|
ECP2_toOctet(SIG, &D, true); /* compress output */
|
||
|
return BLS_OK;
|
||
|
}
|
||
|
|
||
|
/* Verify signature given message m, the signature SIG, and the public key W */
|
||
|
int ZZZ::BLS_CORE_VERIFY(octet *SIG, octet *M, octet *W)
|
||
|
{
|
||
|
FP12 v;
|
||
|
ECP G, PK;
|
||
|
ECP2 D, HM;
|
||
|
BLS_HASH_TO_POINT(&HM, M);
|
||
|
|
||
|
ECP2_fromOctet(&D, SIG);
|
||
|
if (!PAIR_G2member(&D)) return BLS_FAIL;
|
||
|
ECP2_neg(&D);
|
||
|
|
||
|
ECP_fromOctet(&PK, W);
|
||
|
|
||
|
if (!ECP_generator(&G)) return BLS_FAIL;
|
||
|
PAIR_double_ate(&v, &D, &G, &HM, &PK);
|
||
|
|
||
|
PAIR_fexp(&v);
|
||
|
|
||
|
if (FP12_isunity(&v)) return BLS_OK;
|
||
|
return BLS_FAIL;
|
||
|
}
|
||
|
|