Created
November 6, 2015 06:09
-
-
Save gayancc/eba8226413765993dfed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public string CreateSaltKey(int size) | |
{ | |
var rng = new RNGCryptoServiceProvider(); | |
var buff = new byte[size]; | |
rng.GetBytes(buff); | |
return Convert.ToBase64String(buff); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment