Beispiel #1
0
 public static byte[] FromString(string hex, bool prefixed = false)
 {
     return(HexBouncyCastle.Decode(prefixed ? hex.Substring(2) : hex));
 }
Beispiel #2
0
 public static byte[] FromString(string hex)
 {
     return(HexBouncyCastle.Decode(hex));
 }