1
vote
2answers
33 views
Different PHP results with -r option
PHP appears to be giving different hash values when I use php -r <code> on the command line and when I execute the file with php <file>, php -f <file>, or run the …
1
vote
3answers
52 views
How to use sha1 in C# ( SHA1 better or Md5 )
In C# how we can use sha1 automatically ? and sha1 is better or md5 ? we use hashing for user name and password and need speed for authentication .
3
votes
4answers
58 views
Can’t use sha1 inside class definition?
I'm working on a login class in PHP. I have the following line inside a class definition:
private $salty = sha1('salty');
...which is giving me the following error:
"Parse erro …
1
vote
1answer
42 views
Making a sha1-hash of a row in Oracle
I'm having a problem with making a sha1-hash of a row in a select on an Oracle database. I've done it in MSSQL as follows:
SELECT *,HASHBYTES('SHA1',CAST(ID as varchar(10)+
Text …
0
votes
1answer
33 views
How to calculate the SHA1 in iphone
How to calculate the SHA1 of NSString in iphone?Which api can be used ?
0
votes
2answers
33 views
create random sha1 salt with javascript
Hi!
can anyone recommend a good method to create a sha1 salt using javascript ?
0
votes
5answers
651 views
iPhone and HMAC-SHA-1 encoding
im trying to get a call to amazon web service and im stuck on getting the signature, looked at this but i still have a question on it.
using this example what is the
NSData *key …
0
votes
2answers
55 views
There any way to differentiate a md5 of a sha-1 ?
Hi, i want to know if exist a way to differentiate a md5 hashcode of a sha-1 hashcode?
For example:
d41d8cd98f00b204e9800998ecf8427e
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ho …
0
votes
1answer
21 views
I have .Net code uses byte array and get sha1 value but in php i cannot use array to sha1
I have .net code that need to be converted to PHP but I got value $bytearray[] in php need to do sha1 how to do that in PHP....
Pls help
0
votes
3answers
329 views
If .net sha1 hash expects a byte array, and php sha1() wants a string, can I match the results?
I have a set of bytes I want to apply an sha1 hash to. One hash will be in .net, the other in PHP. Then I'll test to see if they match.
In .net, you can create a byte array and us …
0
votes
3answers
69 views
Storing SHA1 Signature as Primary Key in Postgres SQL
Hi,
I'm writing a simple content management system.
I need to store SHA1 hash values that are computed externally as the primary key for my biggest table.
I can obviously use a se …
1
vote
1answer
100 views
Calculate SHA1 or MD5 hash in iReport
How would one calculate an SHA1 or MD5 hash within iReport at report execution? I need to compare a pre-calculated hash against a database driven field (string).
Using iReport 2. …
1
vote
3answers
169 views
SHA1 hash different in Vista and XP
Hello everyone. In a WinForm application using C#.NET 2.0 (on Vista), I am using SHA1 hash to create a hash from a string and store the hash in a text file (with UTF-8 encoding). I …
0
votes
2answers
50 views
Perl Digest::SHA1 not being imported on OS X Leopard Server
Hi there,
I've been trying to get SVN to connect to Atlassian Crowd for authentication but have been running into issues with OS X Leopard Server (10.5.8) and Perl's Digest::SHA1. …
0
votes
1answer
65 views
How do a use a SecureString to create a SHA1 or SHA512 Hash?
I would like to use a SecureString varible within VB.NET and convert that to a SHA1 or SHA512 hash. How would I securely convert the SecureString to the Byte array that HashAlgori …
