python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
SHA256 digest disagrees in Python vs. STM32's built-in HASH device
Problem:
I am trying to compute the SHA256 digests of single blocks (512 bit) on an STM32L552ZE-Q using mbedTLS the HASH device built into the STM32 I am using. Unfortunately, the digest doesn't agree...

iMrFelix
Votes: 0
Answers: 1
How to validate Hashed SHA1 password using sha256
I am trying to convert sha1 hashed password to sha256 hashed password. Can you please guide me how this can be achieved using javascript. I am basically having some sha1 hash passwords which needs to ...
Karan Nayyar
Votes: 0
Answers: 1
Hash an Enum value using Sha256 in Rust
I'm using Sha256 to hash multiple values. A value can be an enum, I am wondering how I can hash it
use sha2::Sha256
enum EnumType{
A,
B,
C { value: u8 }
}
let enum_value = EnumType::A;
let mut...

Simon Tran
Votes: 0
Answers: 1
How to hash password using SHA 256
I'm trying to hash the password fields for the users on my program with SHA 256 but I'm having trouble trying to wrap my head around it. The datatype for my password field on my database is CHAR(64). ...
LearningCoder44
Votes: 0
Answers: 0