コード例 #1
0
ファイル: RecoverCommand.cs プロジェクト: miqoas/OtterKeys
 private byte[] ConvertInputToByteArray()
 {
     return(InputFormat.ToLower() == "hex"
         ? PrivateKey.DecodeHex()
         : Convert.FromBase64String(PrivateKey));
 }