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