예제 #1
0
파일: KzPubKey.cs 프로젝트: TagsRocks/KzBsv
 static KzPubKey()
 {
     lazySecp256k1 = new Lazy <Secp256k1>(() => {
         var ctx = new Secp256k1(sign: true, verify: true);
         ctx.Randomize(KzRandom.GetStrongRandBytes(32));
         return(ctx);
     }, true);
 }