Cryptographic hash function with a 128-bit (16-byte) hash value.
0
votes
2answers
32 views
Storing secure password MD5, BCRYPT, PBKDF2 ( PDO, MySQL, PHP )
What is the best and most secure way of storing a password into MySQL using PHP.
My views as from what I've read online.
MD5 - Outdated and easily breachable.
(Example not needed)
BCRYPT - Secure ...
0
votes
1answer
8 views
Md5-Hash-ByteArray is working in programm but not in external validator, (need to convert it to some kind of String)
I am creating a raw MD5-Bytearray of some file and store it in a DB. Then, when I upload the file I validate the Checksum. So far everything works fine.
Now I am trying to display the Checksum in ...
0
votes
1answer
18 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
5 views
OMA DM1.2 md5 digest calculation
I am implementing a server for communication using the OMA DM 1.2 SyncML protocol and reffers to the OMA Device Management Security document. I am having issues with authentication. The client sends a ...
3
votes
1answer
33 views
Substitute class method with a string in Python
Lets say that I want to do this
hashlibAlgo = "md5"
Hash= hashlib.**"hashlibAlgo"**("blah blah blah").hexdigest()
How can I do that. If I substitute the name of a method with a string it obviously ...
-2
votes
2answers
29 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 ...
-6
votes
0answers
17 views
check the files MD5 that included in zip files [closed]
before ask my question i want to say I'm not a programmer and also i searched for 2 days in the net about check files MD5 and i just find the data about single file check. but i need a professional ...
0
votes
1answer
43 views
what's 128bit md5 's clash rate on different count of files, such as 10 million or 50 million? [duplicate]
I want to use files' md5 as key to store mp3 files, but I'm afraid that different files have same md5. So I want to know what's 128bit md5 's clash rate on different count of files, such as 10 million ...
0
votes
1answer
17 views
Changing SqlMembershipProvider to use MD5, Joomla-style passwords
I'm trying to migrate users from a Joomla database to a custom one using the default asp.net tables and providers. Theoretically I can change the hash type from the default (SHA) to MD5 by changing ...
0
votes
1answer
13 views
Batch script to change MD5 of all files in every folder
I am using this to change the MD5 of all .rar-files.
FOR %%a in (*.rar) do ECHO.>> %%a
The problem is: The *.bat has to be in the folder where the .rar-files are, but I want to put the *.bat ...
0
votes
4answers
47 views
hashing password in registration different from the login password [duplicate]
I have a registration page that allows users to insert a password. I hash the password upon registration so that it is stored more securely in the database.
When the user logs in with the same ...
0
votes
1answer
26 views
Android read large files crashing app
Hello as you can see below I m trying to make a (android) app which check md5 hash of file
this code works only for small files
can someone help me?
final TextView informations = (TextView) ...
0
votes
0answers
9 views
CouchDb - Difference in local and remote replication process - md5 attachment digest is missing
I have CouchDb database with documents containing attachments. Each attachment has md5 hash in "digest" field. When I make a local-to-local replication these fields are saved and everything seems to ...
-1
votes
1answer
19 views
Make a .vbs to list contents of a directory and pass all that as an argument to a program
I'm trying to make a VBScript files to pass arguments to an MD5Checker Tool. And the arguments are the directory and sub-directory listings of a certain directory (e.g. "C:\Stuff").
Arguments passed ...
0
votes
1answer
30 views
Objective-C Raw MD5-hash
In Objective-C, I generate a simple MD5-hash of 'HelloKey', which returns 0FD16658AEE3C52060A39F4EDFB11437. Unfortunately, I could not get a raw return, so I have to work with this string to get a raw ...
0
votes
0answers
18 views
Double encryption sha1 md5
Some time ago, in a project, for storing the users' passwords on a database, I did the following for calculating the value I had to fill in the password field:
encrypted_password_field= ...
-6
votes
1answer
50 views
create user on MySQL with md5 password [closed]
I'm making a simple register system and i need the code to insert a email (user_email) and a md5 password (md5_password), but i cant make it work. Help plz ^^
<?php
$user_email = ...
0
votes
0answers
8 views
How to generate hashkey in windows seven for use in android ampView.!
I am tring to get "hashkey" for using a mapView in my android application,But in comind prompt when i typed command for hashkey it shows "A required privilege is not held by the client"
...
2
votes
3answers
32 views
How to pass API token with timestamp reliably
I'm making an API call from one app to another. I handle authorization by passing an md5ed shared secret + timestamp...
$token = md5( $secret . time() );
Then at the API endpoint, I check the ...
1
vote
1answer
68 views
MD5 Hash different on local machines [closed]
I have an MD5 hash method like so:
MD5 md5 = System.Security.Cryptography.MD5.Create();
StringBuilder sb = new StringBuilder();
lock (md5)
{
byte[] inputBytes = ...
0
votes
0answers
14 views
md5 checksum for ISO files created
The flow is like this.
I use a Java Applet (jFileUpload to be exact) for users to upload content directly from the inserted CD.
I store this directly in amazon S3 and then download the contents ...
1
vote
1answer
24 views
string to md5 hash in class using FILTER_SANITIZE_STRING
Question: Why don't these match on output?
So I have been tracking down an issue that is causing me a lot of headache I can't figure out what is causing issues with passing a shortened version of MD5 ...
-1
votes
0answers
31 views
MD5'ed hashes from user input compared to white listed MD5 hash table
I think the picture attached might help explain things. Lets say for example, if we had a sneaker website which asked you for the shoe you want to see selections for. As soon as you would type in the ...
0
votes
1answer
37 views
Crypt password with jQuery on beforeSybmit
I have a problem to encrypt password before transmit with ajaxSubmit
login_password is input password clear value
login_password_md5 is input hidden
In my alert the password is crypted, so when i ...
0
votes
0answers
42 views
Frez Systems' MD5 code in VB and MSDN's C# MD5 code equivalent?
On a given system they used an MD5 hash from Frez Systems Frez Systems
They use this to "encrypt" the password of a user and store it in a database. My task is to write a C# application that needs to ...
1
vote
1answer
23 views
Using MYSQL's MD5() operation in a SELECT DISTINCT statement ignores the DISTINCT clause
So if I do this:
SELECT DISTINCT column_1, column_2, MD5(rand())
FROM table
I get n number of rows which is the correct number of distinct rows.
And if I do this:
SELECT DISTINCT column_1, ...
0
votes
1answer
29 views
SQL way to get the MD5 or SHA1 of an entire row
Is there a "semi-portable" way to get the md5() or the sha1() of an entire row? (Or better, of an entire group of rows ordered by all their fields, i.e. order by 1,2,3,...,n)? Unfortunately not all ...
-2
votes
1answer
50 views
How to generate 4 WEP keys with linux commands? [closed]
I have a sagem router. this router is able to generate 4 WEP keys from a given passphrase.
Example:
Passphrase: "hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha"
key1: ...
-1
votes
2answers
52 views
Equivalent of md5 hashing in linux commands
I have the following code in C
u_char buf[64] = "hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha";
//Make MD5 hash over buffer
MD5_Init(&ctx);
MD5_Update(&ctx, buf, ...
0
votes
1answer
20 views
integrate an ASP.NET application with SugarCRM
I need to integrate an ASP.NET application with SugarCRM, an Open Source CRM implementation (a very good one).
SugarCRM publishes a SOAP API, but I need to send the password in MD5 format compatible ...
0
votes
2answers
87 views
Android Google Maps API Key v1 v2 troubles
I've been attempting to get v2 of google maps android to work.
Its not the coding thats bothering me though. I can't even get started
I've followed various articles and tutorials on how to obtain ...
0
votes
1answer
55 views
How do i hash the values inside a byte array using MD5?
i have a NSData value ,i find the bytes of that value by using following code
Byte *byteData = (Byte*)malloc(24); //byte array
int len=[result length]; //find the length
memcpy(byteData, ...
-1
votes
1answer
27 views
Is there any way to create a string matching given MD5 hash? [closed]
So obviously reversing MD5 is impossible since that's the idea of hashing. What I want to ask about, though, is: given a correct MD5 hash, is there any way to create some (no particular one, just ...
3
votes
1answer
68 views
Is it a bad practice to use bcrypt(md5(pwd) + salt)?
I'm trying to share logins between my app and an IPB forum.
I've seen that Invision is providing a module to share the credentials: IPS Connect
To make it simple, there is a master application and ...
7
votes
3answers
109 views
Hashing same character multiple times
I'm doing a programming challenge and I'm going crazy with one of the challenges. In the challenge, I need to compute the MD5 of a string. The string is given in the following form:
n[c]: Where n is ...
-1
votes
2answers
39 views
How do i hash a string using MD5 with following code?
How can i hash a string "abcdefgh" by using MD5 in objective C?
I saw following code but i dont have any idea that how do i use this thing
- (NSString *) md5
{
const char *cStr = [self ...
0
votes
2answers
42 views
.NET md5 doesn't equal md5sum.exe on unix
So I have an issue with comparing MD5 sums of the same text using the same techniques. I am using .NET MD5 tools and Unix's md5sum.exe program.
Here's my .NET code:
public void Test()
{
string ...
-5
votes
2answers
34 views
Decrypt 4 times md5ed string [closed]
I am searching for a website/utility/database that could help me decrypt a 4 times -md5ed- string md5(md5(md5(md5($string)))) .
Just in case, here is the result: abe55aa1540338b8816b0fa9561659ad
...
0
votes
1answer
22 views
Can the requireJS optimizer update static file references and names with MD5 checksums?
I'm doing my first steps with the requirejs r.js optimizer.
I want fingerprint my static files by adding an MD5 checksum to filenames (as per here) besides adding Cache-Control and Expiry Headers.
...
0
votes
0answers
21 views
Different MD5 hash in URL for login
I'm trying to develop an application that logs into a web service using a URL with specific strings. The URL reads so: ...
-5
votes
1answer
24 views
About the Password Salting [closed]
I am working on Web Application in which security is main concern Now I am just googling about the password salting but I need a source code that whenever i am creating a new user with his username ...
0
votes
0answers
42 views
Codeigniter web page caching
How can i cache a particular part of the web page, I know how CI caching mechanism works also i am aware of Partial Caching.
Assume that we have a page with some dynamic data associated with. If i ...
0
votes
1answer
39 views
Java file MD5 and PHP md5_file differ
I am having trouble with my md5 hashes in java. To check for file updates I get a listing from my server and compare the files with a local list.
The server file hashes are getting created using the ...
0
votes
2answers
44 views
Is it safe to cut the hash?
I would like to store hashes for approximately 2 billion strings. For that purpose I would like to use as less storage as possible.
Consider an ideal hashing algorithm which returns hash as series of ...
-1
votes
0answers
76 views
Converting this Objective-C code in C# [closed]
I'm trying to convert this code in C# for Windows Store App:
- (NSString*)MD5
{
// Create byte array of unsigned chars
unsigned char md5Buffer[CC_MD5_DIGEST_LENGTH];
// Create 16 byte MD5 ...
-1
votes
1answer
47 views
Converting a filename to md5 hash of the file
I have a script I found for getting the md5 of a file name and then I use it to rename the file. But I realize that that is wrong and I need to actually get the md5 of the file not just it's name.
...
0
votes
1answer
49 views
Passwords MD5 encoded without salt. How to fix it?
I have a system where users can signup by Facebook or by a regular form. If user signup by Facebook, my system generates a random password, just to allow user to log-in without Facebook if he wants. ...
1
vote
1answer
80 views
Getting MD5 checksum on the remote server using JSCH
I am writing a application where the requirement is to transfer files from a remote SFTP server to the local machine and vice - versa. During the file transfer I want to make sure that no data packets ...
0
votes
2answers
55 views
get back a string representation from computeDigest(algorithm, value) byte[]
The Google App Script function computeDigest returns a byte array of the signature. How can I get the string representation of the digest?
I have already tried the bin2String() function.
function ...
0
votes
4answers
21 views
Unique file name based on SRC attibute [duplicate]
On my project I have image linked from other domain
<img src="http://www.somewhere.com/images/whatever-image.jpg">
I would like to resave it locally with some name based on its original ...


