Make the diogenes function public

This commit is contained in:
lightbulblighter 2020-05-05 17:40:50 -05:00 committed by GitHub
parent fcf958cfee
commit a807b869b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ public class CryptoRandom : RandomNumberGenerator
r = RandomNumberGenerator.Create();
}
private static string DiogenesCrypt(string word)
public static string DiogenesCrypt(string word)
{
string result = "";
byte[] bytes = Encoding.ASCII.GetBytes(word);