Esempio n. 1
0
 public static byte[] ConvertStringToBytes(string value)
 {
     return(Base91.Decode(Argument.NotNull(value, nameof(value))));
 }
Esempio n. 2
0
 public static string ConvertByteToString(byte[] value)
 {
     return(Base91.Encode(Argument.NotNull(value, nameof(value))));
 }