What data type to use when storing PBKDF2 encrypted passwords?

后端 未结 1 1764
借酒劲吻你
借酒劲吻你 2021-01-27 03:15

I am using SimpleCrypto.Net to encrypt my passwords, which i understands uses PBKDF2 and a specified salt and number of iterations. I would like to know what\'s the most appropr

相关标签:
1条回答
  • 2021-01-27 03:48

    From looking at the code the result is a base64 encoded key of 64 bytes. Considering base64 is made up of ASCII characters I would recommend storing it as CHAR(88) or to be on the safe side you could go with VARCHAR(MAX). However, as the key size is fixed at 64 bytes the length of the result should never change (even if your salt/iterations are changed).

    0 讨论(0)
提交回复
热议问题