Top "Sha512" questions

The 512-bit version of the Secure Hash Algorithm.

Hashing an entire column using sha512

I have a table with three columns named: Question, Answer, Hashed. I want to update the Hashed column with the …

mysql sha512
SHA 512 crypt output written with Python code is different from mkpasswd

Running mkpasswd -m sha-512 -S salt1234 password results in the following: $6$salt1234$Zr07alHmuONZlfKILiGKKULQZaBG6Qmf5smHCNH35KnciTapZ7dItwaCv5SKZ1xH9…

python python-2.7 hash sha512 hashlib
Python 3 hash HMAC-SHA512

I'm writing a bot for https://poloniex.com/support/api/ The public methods all work fine, but the Trading API …

python python-3.x hash hmac sha512
Hash value generation using hmac/sha512 in java and c#

in c# public static string HashToString(string message, byte[] key) { byte[] b=new HMACSHA512(key).ComputeHash(Encoding.UTF8.GetBytes(message)); …

c# java hash hmac sha512
SHA-512 source code in C

Is there any library which implements SHA-512 in C? For example, Linux sha512sum. Where can I get it?

c hash sha512
Hash string with SHA512 in Swift

Anyone knows how to reproduce PHP hashing method hash(‘SHA512’, $value, true) in swift ? I tried to use CommonCrypto C …

swift hash encoding sha512
how to get Hmac code with javascript

I can get a hmac sing using Python as following: import hmac, base64, hashlib def make_sign(): hash_data = "data" …

javascript jquery hmac sha512
SHA-512 hashing with Android

I was wondering if I can SHA-512 hash a string on Android Studio without a salt. I've seen other questions, …

java hash sha512
hash a password string using SHA512 like C#

I am developing logon function for my iPhone Application, so I want to hash the password using the SHA512 hashing …

iphone hash sha512
Excel formula-based function for SHA256 / SHA512 hashing without VBA or macros

It's the year 2017 and anybody who needs to use hashes should avoid 'broken' ones such as MD5, if security is …

excel hash excel-formula sha256 sha512