コード例 #1
0
ファイル: MclExtensions.cs プロジェクト: LAToken/lachain
 public static string ToHex(this Fr fr, bool prefix = true)
 {
     return(fr.ToBytes().ToHex(prefix));
 }
コード例 #2
0
 public void Serialize(Memory <byte> bytes)
 {
     _privateKey.ToBytes().CopyTo(bytes);
 }