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
Ignore image name while getting hash
I'm coding a program which'll take an image for an input, check it against images in a database and output the image with the same hash
However, when using hash("imagepath") 2 of the same im...
Natural Power
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