Top "Sha512" questions

The 512-bit version of the Secure Hash Algorithm.

C# equivalent to hash_hmac in PHP

using .NET and C# i need to provide an integrity string using HMAC SHA512 to a PHP server . Using in …

c# hmac sha512
SHA512 hash to string in C#

I have code to generate SHA512 from string. public static string GetCrypt(string text) { string hash = ""; SHA512 alg = SHA512.Create(); …

c# string hash sha512
Library providing various hash algorithms (MD5, SHA1, SHA256, etc) in Java?

Is there a simple library out there for Java in a Maven repository that will give me simple, one-liner hash …

java md5 sha1 sha256 sha512
android sha512 example

Can someone provide an example for java/android on how to hash a password using PW_HASH_ITERATION_COUNT iterations …

java android performance sha512
Symfony2: How do i generate sha512 hash of a password?

I need to compare the password entered by the user if it is valid or not. How do i get …

php hash symfony fosuserbundle sha512
SHA 512 hashing and verifying

Alright so Im trying to verify password with SHA 512, but no matter what it still returns false like the hash …

php hash sha512
How insecure is a salted SHA1 compared to a salted SHA512

SHA1 is completely insecure and should be replaced. This question is 8+ years old and times have changed: https://arstechnica.com/…

php security hash sha1 sha512
How to calculate a SHA-512 hash in C++ on Linux?

Is there a standard library or commonly used library that can be used for calculating SHA-512 hashes on Linux? I'm …

c++ c linux hash sha512
sha512-crypt mysql and dovecot

I have a question about understanding sha512-crypt hashing. I found this tutorial to set up dovecot and postfix with …

mysql sha512 dovecot sha2
Storing a SHA512 Password Hash in Database

In my ASP.NET web app I'm hashing my user passwords with SHA512. Despite much SO'ing and Googling I'm unclear …

asp.net sql-server hash cryptography sha512