Secure Hash Algorithm-256 , using 32 bit words

learn more… | top users | synonyms

0
votes
1answer
51 views

Sha256 manual implementation attempt (fail)

I am trying to implement sha256 manually according to the specification, in the most simple form, ignoring performance, for educational purposes, just to see if i can get it done. I tried in java at ...
0
votes
1answer
31 views

Storing a SHA256 of first and last name along with 4 last digits of credit card number

I'm trying to find the best way to uniquely identify customers before they make a purchase to ensure a coupon code isn't used twice by the same person. I do not intend to make my website full PCI ...
1
vote
1answer
58 views

Golang crypto multiple calls have different responses

I'm having a problem with some Go code I've written for a password authentication library. The general idea is to provide 2 functions, Check() and New(), which are both provided a password and a 256 ...
0
votes
2answers
24 views

no module _sha256 installing cellProfiler

I'm trying to install cellprofiler for developpers on linux and get a "no module named _sha256" error. I looked on a few blogs to find a solutions but nothing worked, can someone help me to fix this? ...
0
votes
2answers
84 views

Login with custom Java EE Realm

I've created a Java EE Application with glassfish and netbeans. I installed the custom flexible jdbc Realm from here. I followed all the instructions and used the properties which are shown ...
0
votes
0answers
19 views

SHA_256 functions corrupting memory space

I've been trying to use the SHA_256 functions in sha256.h on a FreeBSD 9.1 system but it seems to be corrupting memory space of my program causing all kinds of manic behavior. I wrote up a quick ...
-1
votes
0answers
49 views

Brute Force key identification - SHA 256 HMAC [closed]

Background: As a follow up to: Is It Possible To Reconstruct a Cryptographic Hash's Key Situation: -I am using a SHA256 HMAC function on a single word input: sha256hmac(privatekey,word) = ...
1
vote
0answers
39 views

String with accent crashes SHA256 encryption

I want to create hash from a string. If the string has characters with accent (like é, ő), it crashes with NSASCIIStringEncoding. It doesn't crash with NSUTF8StringEncoding, but on the server it ...
0
votes
1answer
34 views

Hash computation in Google safe browsing V2 implementation

I am trying to test my implementation of the google safe browsing api version 2. To test a part of my code that sends requests for full hashes for a given prefix, I captured a short session of ...
4
votes
1answer
135 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, ...
0
votes
0answers
25 views

Hashing a large file

Say I have a large file. I break it into bytes of block size 1024. Now the last block would either be 1024 or less. I then find the hash value of last block and append it to the previous block and ...
-2
votes
1answer
60 views

Converting Encryption used in C# to PHP [closed]

I have been trying to convert a C# encryption technique to PHP. The C# code is as given below. I have no experience in C#. I had to take over project in C# private void button1_Click(object sender, ...
0
votes
0answers
35 views

I'm creating a j2me app to generate one time password in netbeans 7.3.i need to do compute sha-256 hash on a string

otp=otp.concat(imei).concat(imsi).concat(username).concat(password).concat(hr).concat(min).concat(day).concat(year).concat(month).concat(dday); MessageDigest md = ...
0
votes
1answer
132 views

How to calculate sha256 file checksum in Go

I need utility for Windows that calculates sha256 file checksum so that when I download fedora I can verify checksum from here: https://fedoraproject.org/static/checksums/Fedora-18-i386-CHECKSUM ...
2
votes
1answer
102 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 ...
0
votes
0answers
19 views

cryptography notation [L]<sub>2</sub>

cryptography notation confusion? http://csrc.nist.gov/publications/nistpubs/800-108/sp800-108.pdf [L]2 An integer L represented as a binary string (denoted by the "2") with a length specified by ...
0
votes
0answers
50 views

Password Safe V3 encryption

I'm trying to write a JavaScript program to encrypt/decrypt Password Safe V3 files, however I cannot quite get my head around the algorithm. This site: ...
0
votes
3answers
82 views

Hashing passwords with exact same inputs doesn't output the same value

I'm trying to hash the password if you sign up on my website, but it doesn't work. This is my code to hash the password upon signing up: $escapedName = mysql_real_escape_string($_POST['user']); ...
0
votes
1answer
89 views

In-built key Generation Algorithm using SHA256

I am working on an application in c# .Net where data needs to be encrypted and Since data privacy is my ultimate motive , I am doing it using AES Encryption and I use PasswordDervieBytes for ...
2
votes
3answers
233 views

Convert a clientsecret into a private key

I'm working with Google Cloud Storage in AppEngine and I'm attempting to use a POST form to upload a file to GCS. The problem I'm having is with the steps needed to sign the policy document. I can ...
0
votes
1answer
187 views

Using SHA256 in PasswordDeriveBytes

Currently, I am working on a .NET application that needs encryption of the data that gets stored in a SQL Server 2008 database. I used AES Encryption and the key is generated using a password and ...
1
vote
1answer
326 views

Java - SHA-256 hashing : Invalid AES key length : 64 bytes

public static String doGenerate() { int val = 10000000; Random r = new Random(); int gen = r.nextInt(89999999); int gen1 = r.nextInt(89999999); gen = val + gen; gen1 = val + ...
-1
votes
1answer
55 views

Why does this code hash null?

The following code passes on the username check, but fails on the password. As you can see, the hashes are echoed, but for some reason, they output ...
1
vote
3answers
170 views

I need to Hash a message with a key using Sha256 on windows 8

So in the old days I used to use System.Security.Cryptography which is not available in windows 8. what i found in windows 8 was windows.security but i didn't find any examples on how to use Sha256 ...
0
votes
1answer
144 views

Hash and encode variable before sending along with request

I'm trying to setup jmeter for connecting to a service which requires some hashing be done on some variables before I start and in-between requests. I've created a User Defined Variable that has the ...
2
votes
0answers
603 views

Crypto++ Mismatch Detected for 'RuntimeLibrary' [closed]

I downloaded and extracted Crypto++ in C:\cryptopp. I used Visual Studio Express 2012 to build all the projects inside (as instructed in readme), and everything was built successfully. Then I made a ...
-2
votes
1answer
182 views

Crypto++ SHA-256 with Code Blocks [closed]

I've been trying to get Crypto++ to work for hours and no success. First of all, getting the hash functions to work is a huge pain. I found only a few working examples and they won't compile. Can you ...
0
votes
2answers
264 views

SHA-256 hashing function in Java ME/J2ME

I've posted this question on the Nokia Developer forums so please bear with me. I'm writing an app which needs to find the SHA-256 hash of a URL keyed with a unique value – i.e. hmac('sha256', ...
2
votes
1answer
138 views

Different answer SHA-256 code (online generator - Lua-script)

What's the reason, that I get different results from an online SHA-256 calculator HASH-code and the code generated by the Lua script I've pasted? Answer online: ...
0
votes
0answers
80 views

Issue with sha256 hash in InternetExplorer

I am trying to generate hash using sha256 in javascript. The generated hashes are different in Firefox and Internet Explorer for same input. Can somebody please help me? Below are findings: Firefox: ...
1
vote
0answers
339 views

xcode ios HMAC SHA 256 hashing

So I'm trying to figure out how to do a hmacshad256 hash on ios as that's the hash I did for the wcf service api I made. I've been trying to look for some info about it but would usually just end up ...
0
votes
1answer
69 views

bcrypt passphrase with multiple rounds of AES encryption?

I'm trying to write a simple Python solution to encrypt a file securely using a passphrase. I figured I would use something like bcrypt or pbkdf2 so that as time goes on, I could make my password ...
1
vote
1answer
109 views

What is DigestUtils sha256 encoding equivalent from JavaScript?

I call following and create the password hash. ByteString password = ByteString.copyFrom(DigestUtils.sha256("mypassword")); But now I need to send the sha256 converted password message from client ...
0
votes
0answers
67 views

openssl adds a null value while signing a certificate using sha256 algorithm

So i am trying to sign this certificate using OpenSSL, which Cisco IOS does not like because openssl adds a null value in signature-algorithm structure: asn1parse of the certificate shows: 18:d=2 ...
2
votes
1answer
75 views

Encryption hmac result is shorter in C than C#

Sometimes you have to implement C-Code and Encryption so I have a Problem with my C-Code implementation of hmac256 or sha2_hmac Implementation: unsigned char key[19] = { "abcdef" }; size_t keylen = ...
-1
votes
2answers
497 views

How can I decrypt a HMAC?

I can make an HMAC using the following: var encrypt = crypto.createHmac("SHA256", secret).update(string).digest('base64'); I am trying to decrypt an encoded HMAC with the secret: var decrypt = ...
0
votes
1answer
174 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 ...
2
votes
4answers
533 views

SHA256 or MD5 for file integrity

I know that SHA256 is favored over MD5 for security etc, but, if I am to use a method to only check file integrity (i.e, nothing to do with password encryption etc), is there any advantage of SHA256? ...
0
votes
1answer
67 views

private key protection for Online signatures

Let's say we have a group of id/signature pairs like: https://picasaweb.google.com/${ID1}?authkey=${SIGNATURE1} https://picasaweb.google.com/${ID2}?authkey=${SIGNATURE2} ...
1
vote
2answers
342 views

NodeJS “crypto” hash seems to produce different output than Crypto-JS javascript library

I am using NodeJS's bundled crypto module for SHA256 hashing on the server-side. On the client-side, I am using a javascript library called Crypto-JS. I am using SHA256 hashes for a login system that ...
1
vote
0answers
312 views

How do I use Sha256 on a file(binary file such as images) in javascript?

I am trying to do a Sha256 on a file in Javascript. I used FileReader(HTML5) to read in a file. I use the readAsBinaryString function in the FileReader to pass in the images file. Then on the ...
0
votes
0answers
206 views

PHP HMAC SHA256 Hashing

im trying to recreate a script from Java to PHP Usually in php we do hash_mac('sha256',string,key) But the generated signature in php doesnt match the java one... Here is the java algo: Mac ...
3
votes
0answers
298 views

How to convert a SHA256RSA signed Server certificate to SHA1RSA?

I am generating a private key with tomcat keystore. After the certificate request is generated and submitted, the server certificate seems to have signature SHA256RSA algorithm and eventually gives a ...
1
vote
2answers
1k views

GCC: Use OpenSSL's SHA256 Functions

I'm writing a program to get myself acquainted with OpenSSL, libncurses, and UDP networking. I decided to work with OpenSSL's SHA256 to become familiar with industry encryption standards, but I'm ...
1
vote
1answer
107 views

Ruby to PHP AES

Im trying to convert some ruby code that encrypts data with AES 265 in CBC mode to php but its not working, the converted php code returns a null string. Here is what i have: Ruby: require 'openssl' ...
0
votes
1answer
101 views

Discrepancy between sha256sum executable and PyCrypto library

I am trying to take the SHA256 sum of an ASCII encoded string. To begin, I tried the sha256sum executable: $ echo foo | sha256sum b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c ...
1
vote
3answers
460 views

is sjcl.encrypt using AES or SHA256

I'm using the SJCL library to encrypt/decrypt messages. The question I have is that I don't know which is used AES or SHA256 Here is my code: var h = sjcl.codec.hex, count = 2048 ; salt = ...
1
vote
1answer
260 views

SHA-256 encryption wrong result in Android

I am trying to encrypt 12345 using 1111 as salt using SHA-256 encoding and the answer I get is: 010def5ed854d162aa19309479f3ca44dc7563232ff072d1c87bd85943d0e930 which is not same as the value returned ...
4
votes
1answer
78 views

Correct hash function for primary keys

Wondering which hashing algorithm I should be using to create primary keys from strings. Right now I'm using SHA-1. In the past I've used SHA-256, although I have heard that 256 might be ...
7
votes
1answer
1k views

Why are the RSA-SHA256 signatures I generate with OpenSSL and Java different?

I want to generate a RSA-SHA256 signature in Java, but I can't get it to produce the same signature as with OpenSSL on the console. This is what I did with OpenSSL (following this tutorial): ...

1 2 3 4 5