SHA (Secure Hash Algorithm) is a family of digest algorithms (i.e. cryptographic hashes), i.e. checksum functions that are hard to forge. The recommended digest algorithms these days are SHA-1 and SHA-2 (which covers both SHA-256 and SHA-512). MD5 is a deprecated alternative.
0
votes
0answers
38 views
Install Error: Digest::SHA
I'm trying to install SHA using the command:
perl -MCPAN -e 'install Digest::SHA'
But i'm getting following error:
/usr/local/bin/ld: this linker was not configured to use sysroots
collect2: ...
0
votes
0answers
14 views
SHA-1 not giving the same answer
I'm trying to implement SHA-1 on Android with the following code
String name = "potato";
MessageDigest md = MessageDigest.getInstance("SHA-1");
md.update(name.getBytes("iso-8859-1"), 0 , ...
0
votes
2answers
42 views
using OpenSSL in Visual Studio 2012
I have downloaded the latest release version of Openssl from http://www.openssl.org/source/
I would like to use it in Visual Studio 2012, especially getting the md5/sha-1 hash of a file, but I can ...
1
vote
1answer
46 views
PHP hash function doing something strange with “\v” - how do I enable escaping from the command line?
If I run the following in PHP
<?=hash('sha256', "\v");?>
I get this hash:
e7cf46a078fed4fafd0b5e3aff144802b853f8ae459a4f0c14add3314b7cc3a6
However if I put \v into any of the online tools ...
0
votes
1answer
14 views
SHA-1 in Amazon Api Authorization in Javascript
I've been trying to get Authorization for Amazon's s3 rest api going. It's pretty damn complicated.
Because I'm trying to make a simple GET request from an admin page on my website, I'm just trying ...
0
votes
0answers
10 views
Getting same size of Signature Data when trying to Use different Hash Algorithms
I have created a sample code in which I am using Microsoft Enhanced RSA and AES Cryptographic Provider(MS_ENH_RSA_AES_PROV). I am generating a public/private key pair using CALG_RSA_SIGN flag set in ...
0
votes
0answers
62 views
Google Maps APIv2 SHA conflict
I have an app that I successfully converted to Google Maps APIv2, but it's stopped working with a strange error. when I load the app onto a connected device via eclipse, and try to access maps, the ...
-2
votes
1answer
40 views
SHA2_256 not same in C# and SQL Server [closed]
static string sha256(string password) {
SHA256Managed crypt = new SHA256Managed();
string hash = String.Empty;
byte[] crypto = crypt.ComputeHash(Encoding.UTF8.GetBytes(password), 0, ...
0
votes
1answer
38 views
php's hmac sha256 implementation mismatches java's one
i'm trying to reproduce in php the test cases mentioned in the official of totp computation reference (http://tools.ietf.org/html/rfc6238 Appendix A) which are written in java. The reference provides ...
0
votes
1answer
16 views
SHA-256 Padding
To calculate the SHA-256 hash I need to pad my message. Am using the following description:
(taken from http://csrc.nist.gov/groups/STM/cavp/documents/shs/sha256-384-512.pdf)
Pad the message in ...
0
votes
4answers
46 views
Is it possible to precompute a git commit hash such that it can be placed in the commit itself?
I was just about to remove a feature from a site admin that I don't believe anyone is using. However I wanted to leave a message on the off-chance that someone is still using it. I was going to ...
2
votes
2answers
43 views
Is it possible to solve for an input value of a hash in ruby if all other variables and output are known? (In ruby)
This question is a little obscure, I'm trying to find out if its possible to "solve" for a value inputted into a hash in ruby, it looks like this:
I have:
@hash = Digest::SHA512.hexdigest(value1 ...
1
vote
1answer
43 views
Using MessageDigest with J2ME Application
I'm unable to use the MessageDigest API in a J2ME application - it is giving ALERT NoSuchMethodError
digest()
My code is
MessageDigest md= MessageDigest.getInstance("SHA-1");
...
0
votes
1answer
40 views
How to check if string is a valid sha256 hash in PHP?
How do I manage to identify a sha256 hash using PHP?
Also, is there any way to identify if the string is a sha256 hash even if it was salted?
I don't need to know the real value of the hash (I know ...
0
votes
0answers
28 views
Drupal password hash not matching existing hash
When logging into a Drupal instance (Drupal 7.22) I've set up, I keep getting a invalid username/password error. I've tried changing passwords and other users to no avail.
What's especially odd is ...
-1
votes
1answer
34 views
How secure is MD5 and SHA1
Hey just a simple questions, as im tryng to understand a bit more on Hash functions, I know how they work and what they do but how secure are they?
I would appreciate a simple answer not links as I ...
0
votes
1answer
16 views
Getting back to an erroneous git reset
Say I'm working on a project and I'm making various commits as I go along
A - B - C - D - E
And I realise that I made a mistake and need to do git reset to go back to version C.
So I then carry on ...
-2
votes
2answers
51 views
Java Generate Unique Surrogate alphanumeric key based on text
I wanted to generate a unique key based on few columns(one of them is the search word....so the length can very long). The volume of records is around 6 million. I have used MD5 and generated a ...
-1
votes
1answer
44 views
Sha512 Registration form [closed]
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 ...
1
vote
1answer
45 views
Password security
Currently I am using a particular scheme for securing passwords, and I think I have some points for improvement. The implementation is in Java, so I prefer to use SHA-2 512 as encryption form.
...
0
votes
1answer
36 views
Failing mocha test on hash of favicon static image
I'm trying to use mocha, request, and a SHA1 hash to write an integration test to confirm that the favicon being served from Express is the same as the one on the file system. I get two different ...
0
votes
2answers
48 views
C using sha2 hashing function
How to use hashing function
void sha2( const unsigned char *input, int ilen,
unsigned char output[32] )
{
sha2_context ctx;
sha2_starts( &ctx );
sha2_update( &ctx, ...
2
votes
1answer
42 views
SHA computes hashes with random length
Recently, I noticed that SHA algorithm computes hashes with random length.
HashAlgorithm provider;
provider = HashAlgorithm.Create("System.Security.Cryptography.SHA256");
while(!stackoverflow) {
...
1
vote
1answer
35 views
Why does opening an MS Excel file change the SHA hash of a document?
I want to verify that the contents of an Excel document have not been altered. I was thinking about using SHA hashes to do this. However, just the process of opening an Excel document changes the SHA ...
0
votes
0answers
40 views
Shell script drag and drop do not generate shasum in Windows
I made the following shell script in which when you pass folder, I make zip file and after that shasum 256 for this zip. This is through cygwin on Windows 7 using mintty. The parameter is passed ...
0
votes
1answer
174 views
Hash a password with SHA1 in java
I want to insert a password to my database using SHA1 hash
I do it manually in phpmyadmin by choosing the function sha1 but how to do this using Java ??
Any Idea ? Thank you!
-2
votes
1answer
55 views
SHA Encryption doesnt work [closed]
Below is the code I have written for SHA encryption. But compiling this, gives an exception
java.security.NoSuchAlgorithmException: SHA SecretKeyFactory not available
Please some one help to ...
0
votes
1answer
39 views
Testing HmacSHA256 signature
I'm testing my Hmac with test vectors from http://tools.ietf.org/html/rfc4231
But on test case 3 "Test with a combined length of key and data that is larger than 64 bytes (= block-size of SHA-224 and ...
-1
votes
3answers
312 views
Decrypt SHA encrypted string [duplicate]
I have encrypted a string using the above code.
public String encrypt(String generatedKey)
{
try {
MessageDigest md = MessageDigest.getInstance("SHA");
...
0
votes
1answer
57 views
.Net chatroom hash (eStreamChat)
I have a question specific to eStreamChat (An opensource Chatroom for .Net). There doesn't seem to be much in the way of documentation on their websites or any examples online so if anyone could help ...
0
votes
1answer
58 views
Difference of sha1 hashes in PHP and Node.JS for cyrillic
If i try to get sha1 from "ABC" they are same if PHP and Node.JS.
function sha1(input) {
return crypto.createHash('sha1').update(input).digest('hex');
};
But if i try to take hash of something ...
0
votes
0answers
92 views
GPU to calculate SHA hashes
I was reading about the proof of work that bitcoin was based on, and while I probably understood it incorrectly, I thought it would make a neat toy project.
So I made a little Python script that ...
4
votes
1answer
152 views
SHA256 in Go and PHP giving different results
I'm trying to send a SHA256 hashed string over HTTP to a server, where I want to authenticate by performing a SHA256 hash and verifying the two match. For testing purposes I'm using the same string, ...
2
votes
1answer
72 views
How are SHA-3 variants named?
How should we succinctly refer to SHA-3 variants of specific width? The precedent set by SHA-2 naming is unfortunately ambiguous if applied to SHA-3. Specifically, we have SHA-0 and SHA-1 (160 ...
0
votes
0answers
68 views
Android and iPhone SHA-1 giving Different results?
I have problem in encoding the "MD-5" string using "SHA-1" algorithm. Here the problem is the output result of the encoded value is different in below cases:
Step 1 :
I am encrypting my password into ...
4
votes
1answer
67 views
Why CRYPT_BLOWFISH in PHP is considered better, when it produces shorter hashes than SHA [duplicate]
Why CRYPT_BLOWFISH in PHP is considered better for password hashing, when it produces shorter hashes than CRYPT_SHA-256/512? Isn't it more possible to find another word that computes the same BLOWFISH ...
0
votes
2answers
64 views
Is it possible to deal with individual bits in C#? Trying to implement a SHA256 generator
Just doing this for fun and I was reading the pseudo-code on Wikipedia and it says when pre-processing to append the bit '1' to the message and then append enough '0' bits to the resulting message ...
0
votes
4answers
98 views
Avoiding hash collision in php when using sha1 for hashing
Suppose i assume if hash collision occur while i am using sha1 function in php .
Will this code avoids it permanently or do i have to use any other way
$filename=sha1($filename.'|'.microtime());
OR
...
2
votes
1answer
144 views
What is the best cryptographic hash function that generates 16-bit hashes values in openssl?
I was thinking of just using SHA256 and then using only the first two bytes of the result. Is there anything wrong with this approach?
NOTE: The concern here is not malicious attacks, but to ensure ...
3
votes
3answers
77 views
SHA512 to generate random numbers in PHP
I'm filling an array with random numbers using $blockhash[$i] = rand().time().rand()
Then, for each random number in that array I calculate the correspondent SHA512
$SecretKey = ...
1
vote
3answers
313 views
Get SHA1 of HexString like HashCalc does
HashCalc has, at the top, a field called "Data Format" I switch that to "HexString" then type in test value of 9a in the data field. I run a SHA-1 hash on it and the answer ...
1
vote
2answers
52 views
Standard format for digital signature
I want to make a javascript library for signing messages. I expect the format to be something like...
--- BEGIN SIGNED MESSAGE ---
This is a plain old message
It goes on and on...
--- BEGIN RSA OF ...
1
vote
2answers
54 views
Is there any chance of my SHA1'd string being non-unique? [duplicate]
I have the following snippet where I am constructing a string to send out to the user as an email confirmation code:
$confirmation_code = $user_id . time() . date('d-m-Y',time());
$confirmation_code ...
0
votes
2answers
315 views
Java and Hash algorithm to compare files [closed]
I have to fingerprint files to match doublets. What is recommended with Java in 2013? Should I also compare the file size, or is this a unnecessary check?
The probability of false positive should be ...
0
votes
1answer
47 views
php PDO query doesn't work with hash_hmac()
I just read about hash_hmac() function,
i tried to use it for storing password in DB :
<?php
$dsn = 'mysql:host=localhost;dbname=test';
$username = 'root';
$pass = 'password';
$conn = new ...
0
votes
0answers
56 views
How to modify “SHA1” in my released keystore app
I made my app using appsgeyser of which was version0.1.
I made the same app with more features on phonegap and updated my version to 0.2.
Everything goes fine
BUT
while uploading my apk to google ...
1
vote
1answer
145 views
PBKDF2 security key in android [closed]
I get from server password like show below and i need to verify that user password is same like form server. How can i do it please?
From server i got this
...
2
votes
2answers
392 views
How to get SHA1 fingerprints from p12 certificate?
In order to get the keys of my Android project, Google requires SHA1 fingerprint.
Offered this command: keytool-list-v-keystore mystore.keystore
I went through different options, but always in an ...
0
votes
1answer
55 views
sha: hashed values not matching,when hashed on different pages
I am using sha1 alogorithm for hashing password,& store it in DB.
I have tried following,in aspx page
1.
Login.aspx
function enc()
{
var x=document.getElementById("<%=txtPwd.ClientID ...
0
votes
0answers
745 views
mcrypt_decrypt(): The IV parameter must be as long as the blocksize
I'm trying to encrypt some information in my code, so I searched for a way to do this.
I found this on php official website:
...





