In cryptography, SHA-1 is a cryptographic hash function designed by the National Security Agency (NSA) and published by the NIST as a U.S. Federal Information Processing Standard.
1
vote
1answer
27 views
Capicom SHA1 hash gets computed different in Java
I am using CAPICOM assembly with VBS logic to encrypt some text, this works good but the problem starts when trying to replicate the same using Java.
This is my VBS code:
Option Explicit
Dim ...
0
votes
1answer
66 views
Hash function SHA1 in C++ [duplicate]
I want to use SHA1 function from openssl library for hashing a string, I have downloaded the library and installed it in /usr/include, and here is my code:
#include <openssl/sha.h>
#include ...
0
votes
3answers
49 views
C SHA1 hash not working
Trying to take a character arracy (new to C) and encode it in SHA1.
The following bit of code is not working. As its returning '\x10'
char encode[1000];
strcpy(encode, "GET\n\n\n");
strcat(encode, ...
0
votes
0answers
60 views
Why is SHA1 hashing the same string differently?
This is the code I have to salt and hash a user's password when they register (with the actual password hashing taken out because it was hashing consistently). What is happening is that when I use the ...
0
votes
2answers
31 views
Ruby code for openssl to generate fingerprint
I need the ruby equivalent of the following:
openssl x509 -sha1 -fingerprint -noout -in cert.pem
The code that I wrote is:
data = File.read("cert.pem")
data["-----BEGIN CERTIFICATE-----\n"]=""
...
0
votes
4answers
34 views
How to filter and recognise hash strings in PHP?
At the beginning of every php script, I loop through the possible POST and GET inputs, filter them properly, so later when I need an input, I can use my custom, safe, filtered variable, (which is an ...
0
votes
0answers
115 views
Better algorithm for converting SHA1 to Ascii that uses fewer than 40 characters?
All conversions of the 160 bit SHA1 use 40 ascii characters (320 bits) to represent 160 bits of data (that I have been able to find). I have a need to optimize this and use as few ascii characters as ...
0
votes
1answer
20 views
URLConnection Basic Authorization with hashed password
I want to open URLConnection to a page that use 'Basic' authentication (Digest method = SHA1).
I only have the hashed password, how can I open the connection?
0
votes
2answers
32 views
php sha1 does not match .Net sha1Managed
I am having problem in matching a SHA1 algorithm in PHP and C# .Net. I need to modify the PHP code to match with .Net value.
The code in .Net is as following:
DateTime dtNow = ...
2
votes
5answers
118 views
PHP Password Hashing, BCrypt to Sha1/md5
I have been looking at upgrading the password hashing security of one of my applications as I have been reading up about brute force attacks being considerably faster then they used to. Currently I am ...
-1
votes
6answers
62 views
Displaying Encrypted Passwords in PHP
A client I am building a website for uses password / promo codes for their "Members Only" section, allowing members to gain access to special content. I am storing said passwords via MySQL, encrypted ...
0
votes
2answers
85 views
Strange algorithm to convert binary SHA-1 digest to hex string
in the Internet I found this code to generate a SHA1 hash:
public static String hash(String str) {
try {
MessageDigest mg = MessageDigest.getInstance("SHA-1");
...
0
votes
2answers
36 views
Rails and PHP encode64 not agreeing
I'm try to create an HMAC in Rails and verify it in PHP.
Rails shell:
pry(main)>appsecret = '00916893840fe0a29dfdc261efd3a26a&'
...
0
votes
1answer
48 views
basic mysql sha1 password valid check
I am using sha1 function to store my password in mysql DB..
$passwordHash = sha1($password);
From google I got this
From user registration
sha1( sha1(users_plaintext_password)+random string )
...
1
vote
1answer
59 views
Encryption not working with key generated from openssl for AES-256
I have generated a key using OpenSSL for AES-256. Below is the line I am executing:
openssl enc -aes-256 -cbc -k Secret_key -P -md sha1 > FILE_NAME.txt
It is generating a key of 64 ...
0
votes
2answers
40 views
Valid md5/sha1/etc input characters?
What characters are valid inputs for the common hash methods. I'm guessing every possible symbol known to man/computer isn't a valid input.
0
votes
1answer
54 views
How do i decode the SMF mysql password field
I currently use SMF as my forum software but i'm currently building a my own customized forum software and i would need to import the entries from my SMF database into my new database. I noticed that ...
0
votes
1answer
38 views
PHP Equivalent of sha1.toString(CryptoJS.enc.Base64)
I am converting a JS script into PHP.
The script uses the CryptoJS library and generates a hash using the following line:
var sha1 = CryptoJS.SHA1("message");
var sig = ...
0
votes
1answer
44 views
hmac sha1 with salt and hash in coldfusion
Now I am doing a penetration testing for my customer.
I have got the administrator's hash(SHA1) ,but i can't decrypt it on the internet, thus I can't access the /CFIDE/administrator/index.cfm
But he ...
0
votes
1answer
101 views
SHA1 hash producing different result in Objective-C and C#.NET
Basically I want to write function that computes sha1 hash.
So far I have tried is as follows.
C#.NET
byte[] p2 = System.Text.Encoding.Unicode.GetBytes("password");
...
0
votes
1answer
56 views
C++ - undefined reference to `WinMain@16
I got a .h and .cpp codes on a website and I am trying to compile them. This is the website that contains the codes: http://raphaelcruzeiro.com/blog/implementing-a-sha1-algorithm-in-c/
I am creating ...
0
votes
1answer
34 views
Issue With SHA1 Hash of Torrent File in Objective-C
Due to the inadequacies of µTorrent's response system when sending through either magnet links or torrent files, that is, the complete lack of a message for duplicate torrent adding, I am attempting ...
2
votes
2answers
67 views
RSA-OAEP : How do Cryptographic hash functions expand a number of bits?
First of, this question is not really code related, but i am trying to understand what happens behind the code. Hope someone know the anwser to this one, because it have been troubling me for some ...
0
votes
2answers
92 views
sha1, crc32, and md5 how to read this data?
How can I Decode the md5, crc32, and sha1, below is xml file and then is code I'm using to get data so far.
<files>
<file name="AtTheInn-Germany-Morrow78Collection.mp3" ...
0
votes
1answer
29 views
Searching by hash sha1 in bash script
How to use command find to search for a file by hash sha1 in bash script ?
0
votes
1answer
128 views
How to properly generate a WSSE Password Digest in PHP
I'm looking at building a REST API in Symfony2, and in their Custom Authentication Provider they show how to build a WSSE authentication system, which should be fine for what I need to do. I'm going ...
0
votes
0answers
30 views
C and hashlib LNK errors
Okay. So i am using Visual Studios 2010 -> Visual C++ and the .NET Framework (Windows Forms Application) and when i try to hash a string with the hashlib++ i get multiple LNK errors.
This is ...
1
vote
3answers
231 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
votes
1answer
41 views
What hash program are recommended to create md5 and sh1 from a file? [closed]
I am trying to find a program to create md5 and sha1 hashes from a file so that when people download the file they can be sure that they are getting what was submitted. Like they do for wordpress. ...
0
votes
2answers
165 views
Why does printf(“%02x”…) change output?
/*HASHING*/
unsigned char *do_hashing(unsigned char *buffer){
unsigned char outbuffer[20];
unsigned char output[20];
SHA1(buffer, strlen(buffer), outbuffer);
for (int i=0; i<20; ...
0
votes
0answers
31 views
Digital signature verificaion
I have the following code where I am generating a digital signature for a file and then verifying the digital signature. However, I am always getting signature verifies:false.
Where am I wrong. The ...
0
votes
1answer
102 views
SHA1 library link not found using makefile
I'm having trouble linking the sha library with my makefile while compiling.
Here is my makefile:
CFLAGS= -g -Wall -Werror -std=c99 -pedantic
LDFLAGS=-lssl -lcrypto
CC = gcc
LD = gcc
OBJS = ...
0
votes
1answer
217 views
sha1 password hash linux
What i want is to be able to get the sha1 hashed value of a particular password.
So for instance if my password was "hello" what command would i need to type into linux to get the sha1 hashed value ...
0
votes
1answer
88 views
Storing SHA1 hex value in PostgreSQL
Seemingly simple question, corresponds to another question that was asked with regards to MySQL: How does one store the hex value that results from a SHA1 hash in a PostgreSQL database?
Note: I ...
0
votes
1answer
68 views
Unique generated SALT for each user?
I'd like to ask if it's possible to generate a unique salt for each user and then hash it like
sha1(sha1($password . $salt))
so the $salt is a randomly generated string?.
If yes, how would I encrypt ...
-3
votes
2answers
59 views
How can I sanitise input for a hash converter in PHP? [closed]
I have made a website that generates hashes from users inputting plain text, a user can enter a word/ phrase and select from MD5 or SHA1 (or both). The site then takes this input and converts it into ...
0
votes
3answers
93 views
SHA1 for Specific String in iOS
According to my requirement:
The input string has to be converted into Byte Values.
Each character of string , which are 16 bit values , has to be converted to low 8 bits.
The Sha1 is then computed ...
0
votes
1answer
225 views
Custom Http Authorization Header with Spring Security
We are building a Restful service using Grails framework and are providing security for it using Spring Security plugin. I wanted to check with you all on best approach to take when you want to ...
0
votes
4answers
140 views
use SHA1 with COBOL
I was wondering if there's any way to apply SHA1 hash with COBOL.
If there's at least some info of how the SHA1 algorithm works it will be usefull.
Thanks
-6
votes
1answer
64 views
salt sha1 approach [closed]
I am working on a new website that will work in conjunction with a remote server of mine. as im writing the php code i have come into a snag. what would be the best approach with having a user login/ ...
1
vote
1answer
64 views
Node.js and sha1
http://www.php.net/manual/en/function.sha1.php
string sha1 ( string $str [, bool $raw_output = false ] )
If the optional raw_output is set to TRUE, then the sha1 digest is instead returned in raw ...
0
votes
2answers
149 views
Retrieving an encrypted password in PHP [duplicate]
The following code is what I've used to encrypt a password in PHP...
$password = sha1(sha1($_POST['password']).sha1("mySalt@$#(%"));
What code can I use so users can log in using what they typed?
1
vote
1answer
221 views
Why my python and objective-c code get different hmac-sha1 result?
I am writing a client/server project that need a signature. I use base64(hmac-sha1(key, data)) to generate a signature. But I got different signatures between python code and objective-c code:
...
0
votes
3answers
66 views
Which is better encodeing for activation hash, sha1 or base64_encode [closed]
I am currently building a basic auth syste, and i have an user activation feature what generates a 20 character long string and encodes it to sha1 , but i saw a few other systems use base64_encode ...
1
vote
1answer
88 views
MediaFire Rest API session signature SHA1?
I'm trying to connect to MediaFire using their API.
According to the documen the get_session_token request one of the required parameters is:
signature: a SHA1-hashed string that contains the ...
0
votes
1answer
84 views
Python - hashing binary value
I wanted to use sha1 alghoritm to calculate the checksum of some data, the thing is that in python hashlib input is given as string.
Is it possible to calculate sha1 in python, but somehow give raw ...
0
votes
0answers
37 views
MD5 or SHA1 - which takes more computer power to execute?
Which one takes more computer CPU cycles to execute? MD5 or Sha1?
0
votes
1answer
96 views
Java SHA1 Equivalent In C# [closed]
In a Java Android app I got the following code to get the SHA1 for a string. How can i Have the Equivalent in C#?
/**
* Utility method to convert an array of bytes to hex.
*
* @param data
...
1
vote
1answer
69 views
Migrate password Symfony2 to CodeIgniter
I am migrating a project in Symfony to CodeIgniter. I have a problem with password user: I don't know how to create the same password in Codeigniter.
Example with the password is : aze. In the ...
5
votes
1answer
76 views
Hash function that protects against collisions, not attacks. (Produces a random UUID-size result space)
Using SHA1 to hash down larger size strings so that they can be used as a keys in a database.
Trying to produce a UUID-size string from the original string that is random enough and big enough to ...




