IN3D / Pokemon

Recreation of pokemon, in C#.
0 stars 0 forks source link

Create password encryption functions #53

Closed IN3D closed 9 years ago

IN3D commented 9 years ago

To be defined in Model, a static security class should handle this functionality.

The encryption should be one way. That is that no functionality should be implemented to attempt to decrypt the password once encrypted, only compare hashed values, which should be the same when the text contained in the password box at login is rehashed and found to match.

Daxter304 commented 9 years ago

Could use a cipher like ROT13

IN3D commented 9 years ago

I used SHA256 to convert the password into a very long hexadecimal value. I'll give you a full explanation in a bit.