python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
SHA256, SHA512, MD5 generates exactly the same hash for different files in C# .NET 6
I have a strange issue. I have the following very basic code:
private async Task<string> _CalculateChecksum(Stream strm)
{
System.Security.Cryptography.MD5 sha = System.Security.Cryp...
Gabor Varga
Votes: 0
Answers: 1
SHA512 hash in Oracle PLSQL vs Node.js
I need to get a hash in Ora PL-SQL thats the same as it is in Node.js using crypto module.
In PLSQL im using integrated dbms_crypto.hash function. There is also dbms_crypto.mac function but i cant use...
mire.ba
Votes: 0
Answers: 2
Why generate_password_hash() creates a different hash for the same password?
from werkzeug.security import generate_password_hash
password_hash = generate_password_hash(password='qwerty', method='sha512')
print(password_hash)
I get a different hash every time I run it on py...
Paul Ged
Votes: 0
Answers: 2
please explain? api signature example
(Update: still stuck after changes made from John's comment)
I am hoping for somebody to kindly try to explain in layman's terms how the signature is generated in the following example? I am pretty mu...
Rusty75
Votes: 0
Answers: 2