The 512-bit version of the Secure Hash Algorithm.

learn more… | top users | synonyms

0
votes
1answer
25 views

Sha512 Registration form

I've been working with the PHP Session login tutorial at: http://www.wikihow.com/Create-a-Secure-Login-Script-in-PHP-and-MySQL This seems to be a secure and good php solution for user management and ...
0
votes
0answers
11 views

Is there an issue with putting a longer input string to a hashing algorithm than the algorithm outputs?

Currently I'm designing a hashing system for user emails, but what happens if the user email is longer than the hash output. I usually use sha1 sha256 or sha512 if it makes a difference based on ...
0
votes
0answers
23 views

Usage of createElement/appendChild in IE8 for 512sha encrypted password?

I want to encrypt a password from a login-form. So i have a submit-button in the index.php, which encodes the pw by onclick: <button type="submit" class="btn" onclick="formhash(this.form, ...
0
votes
2answers
49 views

ASP.NET || Is this a good way to hash passwords?

I'm trying stuff to hash password for my website and I've been experimenting a bit and I've gotten a result. Now I'm asking myself if this is actually a good way to hash my passwords. My Main code: ...
1
vote
1answer
41 views

mysql check data in sha512 encryption

I need to check data in sha512 encryption by MYSQL query and PHP I can do it by md5 like this : SELECT * FROM text WHERE md5(id) = '$id' But , how about in sha512? Regards
1
vote
2answers
72 views

Is it possible for a sha512 hash to start with 64 zeros? [closed]

I was just thinking about numbers repeating in hashes and I was wondering if it was possible for half of a sha512 hash to consist of 64 consecutive zeros.
1
vote
1answer
54 views

SHA512 client handshake implementation

I'm attempting to make an hmac implementation that interacts with a server api and the only example I have to go off of is a python snippet. Unfortunately I've never touched python and my Java is a ...
0
votes
0answers
52 views

mkpasswd sha512 password generation

I have generated a hash using mkpasswd command, cybersecurity@cybersecurity-aryanz:~/Desktop$ mkpasswd -m sha-512 albie manchester ...
0
votes
1answer
77 views

How to convert SHA512 hash NSData to hex NSString? [duplicate]

So I have a method NSString *hashForKeyAndData(NSString *key, NSString *data) { const char *cKey = [key cStringUsingEncoding:NSASCIIStringEncoding]; const char *cData = [data ...
0
votes
1answer
43 views

Objective C: make a POST request using SHA512

I need to acces an API on https://btc-e.com/api/documentation. I've been googling and trying lots of stuff for 3 days right now and I completely lost any hope that I can access that API. It needs ...
0
votes
2answers
88 views

HMAC SHA512 output varies in Perl

I have observed that the output of HMAC SHA512 for a given data and a key varies each time I execute the script. first, I take an example of a script where the output does not vary: #! /usr/bin/perl ...
4
votes
3answers
147 views

(Not-so)Clever key is causing problems with SHA512 Hmac in Node JS

This is an oddball question, but I have been working on this for hours now and am not making much progress. I am hoping someone here may be able to advise... I am porting a script from php to node. ...
4
votes
2answers
131 views

Hashvalue from SHA512 algorithm is 128 bits long?

I’ve a strange problem. In my code I create a sha512 hash algorithm and sign some data with it. Now I would expect the hash to be 512 bits long, but it’s 128. What mistake have I made? My Code: var ...
0
votes
0answers
36 views

How do I implement Sha512 in my web application>?

I want to implement sha512 in my web application, so the passwords on my database can't be visible.Does anybody how to write the code to achieve this? Any help is greatly Appreciated!
0
votes
0answers
129 views

jQuery Validation Engine and hashing with Sha512

I have a problem with getting the password hashing working alongside with jQuery validation engine. The problem is that I can't seem to hash the given password. This is what i have so far. ...
2
votes
1answer
326 views

Java SHA512 digest output differs from PHP script

Can someone figure out why the output of these (php and java) snippets of code don't return the same SHA512 for the same input? $password = 'whateverpassword'; $salt = ...
1
vote
1answer
130 views

Cant Login in my Hashed password but there's one user that can login

Halo there, I have a problem of logging in my registered user, I've hashed the passwords and when I log in my form refuse, So I don't really know whats the problem because the user I registered ...
0
votes
0answers
183 views

PHP Change Password salt not working

I can't figure this out. I want the user to be able to change his password: function changePw($userid, $password, $mysqli) { if ($stmt = $mysqli->prepare("SELECT salt FROM members WHERE id = ? ...
1
vote
2answers
293 views

Convert linux sha512 shadow to hex

I am trying to understand the linux shadow string format, and convert the string to a general hex format, just like how MD5 is usually represented. I was following the definitions here ...
0
votes
1answer
57 views

FIPS error when using SHA512Cng on a FIPS Compliance enabled computer Asp.Net

I tried to search the forum but didn't find what I needed. We have an Asp.Net web app that we want to be FIPS compliant. After some research it seems that SHA512Cng class is Fips compliant and can be ...
1
vote
1answer
33 views

Hash a value with itself as salt

I'm developing an application where users can search for other users that are already registered with their email. But because I don't want people to send me the addresses of their whole contact book ...
0
votes
1answer
177 views

SHA256-CRYPT / SHA512-CRYPT in node.js

I use dovecot as my mail transfer agent and I aim to use the strongest password scheme which is supported by my system: SHA512-CRYPT or SHA256-CRYPT (BLF-CRYPT doesn't work). For my own written ...
1
vote
3answers
204 views

SHA512 Python produced different result for the same string

I have a list of ids that I want to append with the string 'text'. I want to check if any of the ids (after being appended with the 'text' string) equals to the string 'text_compare'. What the weird ...
0
votes
1answer
154 views

Nodejs crypto vs python hashlib

I'm trying to make a python function and a nodejs function compute the same hash. However, it seems like the binary that is outputted is different between nodejs crypto and python hashlib. The python ...
0
votes
0answers
37 views

How to create a compatible SHA512 hash between Objective-C and PHP? [duplicate]

Possible Duplicate: SHA-512 library for PHP In the Objective-C part, I'm using the following method to create a SHA512 hash, extracted from NSString-Sha1: - (NSString *)sha512 { NSData ...
2
votes
2answers
843 views

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# : Encoding encoding = Encoding.UTF8; byte[] keyByte = encoding.GetBytes(key); HMACSHA512 ...
0
votes
1answer
160 views

How to convert OpenSSL SHA-512 hash to GMP number to use in RSA encryption method

SHA1(data, length, hash); unsigned char *labelPtr; labelPtr = hash; mpz_set_str (encrypted, labelPtr, 16); gmp_printf("hashed= %Zd\n", encrypted); encrypted equals 0? I need to get an integer from ...
0
votes
1answer
430 views

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 Answer column hashed using sha512. I've tried to do the update directly from my MySql ...
1
vote
4answers
472 views

Taking a C# sha512 hash and compare it in php

I have looked and found code to take a PHP sha512 hash and match it inside C#. I am currently looking for a way to go from a hash that was made in C# and get the same result in PHP. We are slowly ...
1
vote
3answers
2k views

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(); byte[] result ...
0
votes
1answer
1k views

Understanding and cracking salted sha512 hashes

On Ubuntu 12.04 I created several users and passwords, then promptly proceeded to try to crack those passwords with John the ripper. One password is very strong, but the others are in my wordlists. ...
1
vote
1answer
344 views

Hashed and Salt with CAPICOM ? SHA 512 using asp-classic

I would like to know if this method is safe to use for login since this is the only one I found that is easy to understand and that it is in asp-classic so that I a noob can understand and add to the ...
0
votes
1answer
487 views

How to random salt for SHA512

Currently im using php5 for my hashing of my password. I want to know how to change the random salt for SHA512. After i change the following code from sha1 to sha 512, my hashing failed. Below is my ...
0
votes
1answer
363 views

Python hashlib & decode() on a Bytes Object

I'm not understanding something about hashlib. I'm not sure why I can decode a regular byte object, but can't decode a hash that's returned as a byte object. I keep getting this error: ...
0
votes
1answer
307 views

how to post sha512 encrypted data

I need help for my php script. I need to post certain fields like invoiceid, firstname, email, etc in encrypted way. The formula for the checksum is sha512 ...
0
votes
1answer
121 views

Import C# public key to java to verify

I create a pub/priv key pair in C#, i want to sign it in C# then verify it in Java. How do i do that using SHA512withRSA?
0
votes
0answers
22 views

Recommended salt length [duplicate]

Possible Duplicate: What is the optimal length for user password salt? What is the recommendations for the length of the salt value when hashing password? I have seen anything from 10 to ...
0
votes
3answers
1k views

Best practice for hashing passwords - SHA256 or SHA512?

I am currently using SHA256 with a salt to hash my passwords. Is it better to continue using SHA256 or should I change to SHA512?
0
votes
2answers
338 views

.NET - Computing SHA512 with SHA512Managed - Why two “==” when converting to string?

For some reason everytime i compute a sha512 hash and convert it to a string, the two last characters are ==. Any idea why? Function GetSHA512FromStringAsString(ByVal strdata As String) Dim data ...
0
votes
1answer
123 views

UInt64 - Automation Type Not SUpported

I'm trying to implement a SHA512 algorithm on VBA, Excel 2003. This is what i'm using as a basis: http://www.saphir2.com/sphlib/ I'm facing a problem with the use of UInt64 (unsigned long) in VBA. ...
2
votes
2answers
512 views

Compute SHA512 on VBA (Excel 2003)

I'm trying to compute the hash of a string on VBA (Excel 2003), but when I call ComputeHash, it throws me an Invalid argument/procedure call error. DLL References: mscorlib v4.0, System v4.0 MSDN ...
0
votes
1answer
167 views

sha512 not working correctly

I have the following code for storingh sha512 passwords, but whenever i try registering I get same hash key as well as first name, last name, and email fields dont get input into my db. Here's my ...
1
vote
1answer
143 views

PHP salt passwords

Ok so here is how We do passwords. note We did change what we salt by. <? $PASSWORD = $_GET["password"]; $ranNUM = rand(965824, 957873488423748423486483); $PASSWORD = hash('sha512', ...
1
vote
2answers
100 views

Dealing with lack of hashing methods (different php versions - same code)

I'm in the process of developing a CMS system which will run my clients sites, but I've come to a situation I tried to avoid. The hash() function requires PHP >= 5.1.2, and I obviously can't assume ...
1
vote
2answers
283 views

Why isn't my PHP password hashing comparison working?

I have two functions, HashPassword() and ValidatePassword. The first one hashes the password given on signup form with a dynamic salt and the second validates the password. Basically, I am checking ...
1
vote
2answers
496 views

Why chose SHA512 over SHA384?

SHA384 is a truncated version of SHA512. But why would anyone use it? And corollary: if SHA384 is just as good as SHA512, is there any rationale in using the 512 bit version? I am planning to use one ...
0
votes
2answers
2k views

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 the sha512 encryption. I am also using FOSUserBundle in my project.
0
votes
2answers
138 views

How do you add, “rounds” to a function like hash_hmac()?

I have read from this article http://codahale.com/how-to-safely-store-a-password/ and it says using a salt isn't even safe against GPU brute force attacks. I don't want to get hacked and have ...
0
votes
1answer
540 views

Implement SHA 512 Hash with Code Igniter

I have a controller: landingpage.php <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class LandingPage extends CI_Controller { public function index(){ ...
0
votes
2answers
200 views

Secure usage of SHA512

I have a question about the security of the following usage of SHA512: If I have two strings, x and y. Is it possible to derive SHA( x ) and SHA( y ) from SHA( x+y ) or reversed? x+y is string x ...

1 2 3