Top "Md5" questions

Cryptographic hash function with a 128-bit (16-byte) hash value.

Golang md5 Sum() function

package main import ( "crypto/md5" "fmt" ) func main() { hash := md5.New() b := []byte("test") fmt.Printf("%x\n", hash.Sum(…

hash go cryptography md5 md5sum
Computing MD5SUM of large files in C#

I am using following code to compute MD5SUM of a file - byte[] b = System.IO.File.ReadAllBytes(file); …

c# md5 hash large-files
GPU MD5/SHA1 Hasher

I would like to make md5/sha1 hasher tool to calculate hash for large number of big files like movies. …

cuda md5 sha1 gpu cal
Using MD5 to generate an encryption key from password?

I'm writing a simple program for file encryption. Mostly as an academic exercise but possibly for future serious use. All …

key md5 aes pbkdf2
Has the hash password function changed in magento? If so, to what?

I am using magento version 1.9.0.1. For switching to magento purposes I need to create a login function for customers outside …

validation magento login md5 saltedhash
will java messagedigest generated different MD5 hash on different jdk version?

I am using java message digest to create MD5 hash, which is used for authentication. The MD5 hash is stored …

java md5 message-digest
hashcat for md5($salt.$pass)

How could i use hashcat to crack this hash? Syntax: md5(eWVzX3RoaXNfaXNfdmVyeV9sb25nX3NhbHRfdG9vpassword@123) = 531e89f00f009…

md5 hashcat
Using file.managed for downloading a file in Salt

salt.states.file.managed takes source_hash as an argument to verify a downloaded file. This blocks me from using …

web-services hash md5 salt-stack
How do I run md5() on a bigint in Presto?

select md5(15) returns Query failed (#20160818_193909_00287_8zejd): line 1:8: Unexpected parameters (bigint) for function md5. Expected: md5(varbinary) How do I hash 15 …

sql md5 presto
Java - PBKDF2 with HMACSHA256 as the PRF

I've been given the task of creating a Login API for our project and I'm supposed to use PBKDF2 with …

authentication hash cryptography md5 pbkdf2