❔ help whit that my tool
https://github.com/SirKyller/SHA256SaltGenerator.git
need work whit that project https://paste.mod.gg/hhjyvsiglydc/0
GitHub
GitHub - SirKyller/SHA256SaltGenerator
Contribute to SirKyller/SHA256SaltGenerator development by creating an account on GitHub.
BlazeBin - hhjyvsiglydc
A tool for sharing your source code with the world!
6 Replies
i newble undersand how coding
$details
When you ask a question, make sure you include as much detail as possible. Such as code, the issue you are facing, and what you expect the result to be. Upload code here https://paste.mod.gg/ (see $code for more information on how to paste your code)
We do not help with entire project(s), but specific questions.
i need make sha256 salt generator
but understand how work cs file
isf is sha256 + salt
SHA256Managed crypt = new SHA256Managed();
string hash = String.Empty;
byte[] crypto = crypt.ComputeHash(Encoding.ASCII.GetBytes(randomString), 0, Encoding.ASCII.GetByteCount(randomString));
foreach (byte theByte in crypto)
{
hash += theByte.ToString("x2");
}
return hash;
password generator sha256+salt or md5 password to sha256+salt
becouse under is string md5Password = sha256(salt + password);
how to create psw generator type
i write to me
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.