Beispiel #1
0
 public int Decrypt(string hashedid)
 {
     return(_hash.Decode(hashedid).First());
 }
Beispiel #2
0
 public void RoundtripInts()
 {
     var encodedValue = _hashids.Encode(_ints);
     var decodedValue = _hashids.Decode(encodedValue);
 }