Tagged Questions
1
vote
1answer
50 views
Same hashing + encryption in different platforms generating unidentical values
I am writing some web-services for a social networking website. These web-services would be utilized by android for making android-app. As the person who designed the website is no longer under ...
1
vote
3answers
75 views
Hashing and GetString/GetBytes issue
I have the below code to hash/store/retrieve data for passwords but my first unit test and it fails.
I beleive its the Encoding causing the problem because when GetBytes is called it returns ...
1
vote
5answers
133 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 ...
-2
votes
1answer
51 views
One way encryption, saving the hashed string to a file? [closed]
public static byte[] createHash( String stringToHash ) throws UnsupportedEncodingException {
MessageDigest digestor;
byte[] byteInput = null;
try {
digestor = ...
1
vote
2answers
51 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
votes
1answer
27 views
validation in p2p communication
Suppose that in my "network" of users each node can create only one hashed code (generated with the node's id).
Now, node A sends to node B this hashed code. node A is no longer the owner, but B is.
...
1
vote
2answers
44 views
Hashing, encrypting or both
Recently I have been looking to add some security to a project. I have been doing lots of research into the situation and discovered that clearly password hashing is a must. Further I have concluded ...
1
vote
1answer
304 views
how do you get the password hash of a zip file?
I was doing a CTF sample, and they gave me the files hash. I ran it through JtR and i got my password for the sample. The thing is, the hash was given to me. Is there a way to find the hash of that ...
0
votes
4answers
93 views
simple password validation
I wan't to make 1000 passwords and give them to users.
Passwords contain 6 digits - they look like random 6 digits.
When user comes there is no information besides this password, and I want to ...
4
votes
1answer
89 views
Does it make any difference of the order Hashing and Encrypting in terms of security?
I am implementing a password vault program with java. I have programmed a triple DES for encryption and a SHA256 for hashing.
My question is would it make any difference if I first hash the raw data ...
2
votes
1answer
106 views
PHP mcrypt_encrypt/mcrypt_decrypt issue, returns a different value
I was looking for an answer but could not find it here. Please excuse me if this question was already asked.
I have a simple code encrypting and decrypting a string, strings look the same, but when ...
0
votes
1answer
51 views
User Authentication by Decryption
I'm trying to avoid DB access upon authentication to improve performance
a valid solution after lots of searching seems to be storing an encrypted string in cookie and try to decrypt it upon ...
1
vote
4answers
239 views
Encryption Comparing Hashed&Salted Password upon Login
I have a simple password encrypter that gives me a hashed/salted password to store in my database when a user registers. Code:
public static string GenerateHashWithSalt(string enteredPassword, ...
2
votes
1answer
61 views
Does having access to an application that implements encryption and decryption make it easier to crack?
Say I have an application that is to read and write files which are protected with a hash (to detect tampering and corruption) and optionally encryption with a user's key. The application will ...
0
votes
3answers
38 views
Is it worth encrypting a password hash?
I was wondering if it is common practice to encrypt a password hash, and/or the salt, does it necessarily make it more secure or just increase the time it'd take to "guess" the password?
Thanks!
0
votes
1answer
96 views
Own encryption script
<?php
error_reporting(E_ALL ^ E_NOTICE);
$string = "123456";
$replace_from = array(
"1",
"2",
"3",
"4",
"5",
"6");
$replace_to = array(
"Al01",
"Br20",
...
0
votes
3answers
66 views
Need to hash up to 500 char string (think password style encryption), that would be difficult to reverse
I am storing "secret" strings in a database as a hash (in case data is compromised). I was using bcrypt, but found out that it apparently only takes the first 55 characters. Basically someone will ...
1
vote
1answer
128 views
Cant Login in my Hashed password but there's one user that can login
Halo there,
I have a problem of logging in my registered user, I've hashed the passwords and when I log in my form refuse, So I don't really know whats the problem because the user I registered ...
2
votes
2answers
90 views
How to hash and encrypt password over the web?
I am working with a pet project and I come to a point where I want to add user sign up support. After some research I decide to go with saving hashed password and salt in my database and never the ...
0
votes
3answers
150 views
Is it good to hash the password or encrypt it? [duplicate]
Possible Duplicate:
Difference between Hashing a Password and Encrypting it
Hashing vs. Encrypting Passwords
I tried hashing my password in C# using Rfc2898DeriveBytes by passing the ...
1
vote
2answers
291 views
Convert linux sha512 shadow to hex
I am trying to understand the linux shadow string format, and convert the string to a general hex format, just like how MD5 is usually represented.
I was following the definitions here
...
-1
votes
2answers
170 views
Creating Encrypt/Decrypt Functions using Peter Weinberger's Hash algorithm
Is it possible to decrypt Peter Weinberger's Hash algorithm?
I am attempting to write my own Encrypt Decrypt functions. I understand the concept that a Hash value means you can not or are not ...
0
votes
2answers
79 views
Secure way to encrypt a file that can be used on other computers
Lets say my program is an Anti-Virus.
Lets also say I have a file, called "Signatures.dat". It contains a list of viruses to scan.
I would like to encrypt that file in a way that it can be opened my ...
1
vote
1answer
109 views
Encrypting and Compressing a file name
Say, I have a file with informations about an object. I create it with a name so that the filename itself contains certain information about the object like the object Id, object Parent Id, some other ...
0
votes
2answers
113 views
Storing passwords in salted hashes for user logins [duplicate]
Possible Duplicate:
How do you use bcrypt for hashing passwords in PHP?
I am researching the best and safest methods of encrypting and storing user passwords in a database for logins. One ...
2
votes
3answers
136 views
Create a secure hash that hides an int value in C#
I am trying to create a registration code for my C# 2.0 desktop application, which is a pay-per-use application. The registration code must hide an int value within it (the int value represents the ...
1
vote
2answers
118 views
Where to hash a password ( server || client )
I was looking at Stanford's JavaScript crypto library and realized I could do hashing on the client.
Previously, I've been using PHP crypt() which is concise because with one command -
crypt() I ...
2
votes
0answers
57 views
Determining the encryption used based on string and salt [closed]
I'm reverse engineering a system that I've been tasked to understand. The system uses tokens and semi-randomised[1] timestamps (as the salt) and an unknown hashing function to generate random keys for ...
-2
votes
1answer
161 views
PHP: Better to - Create hash table lookups, or encrypt/decrypt hash keys?
I'm building an app that works with two main elements.
The first is a segment that generates an entry with a with some hash key (eg. 5c2a4b5773500a0417f6e6d8299776d9cba7ead9) and inserts it into a ...
-4
votes
1answer
238 views
How to find encryption type [closed]
Can someone help me with this hash? How can I find out which encryption type is used and how to decode it?
This is what I got after url_decode
...
1
vote
2answers
205 views
Alternative to md5, also available in javascript
As php.net states here:
It is not recommended to use this function to secure passwords, due to
the fast nature of this hashing algorithm.
I have used the md5 function since I started ...
2
votes
3answers
127 views
Why do we need Hash by key?
(i'm just trying to find what am I missing...)
Assuming John have a clear text message , he can create a regular hash ( like md5 , or sha256) and then encrypt the message.
John can now send Paul ...
0
votes
0answers
80 views
Encryption & Digital Signatures
I have Some queries on Encryption that I just cannot find the answer for anywhere....
When performing Asymmetric / Public Key Encryption is the same actual Algorithm / Function used to perform both ...
2
votes
3answers
105 views
Legality of storing ip addresses [closed]
I'm starting a new project in which it will involve some sort of "analytics" system. For this system to work properly I need to make a count of unique visitors to site(s).
To do this I was going to ...
2
votes
2answers
175 views
Mathematics of Hashing with numbers and letters
Hashing uses a way of reading the inner data of a file and mathematically creates number and letters from it. How is a mathematical equation in C++ do this?
I'm trying to make an application using ...
0
votes
2answers
251 views
SHA256 hash function giving unexpected result
I'm using C# and wondering why the .Net function PasswordDeriveBytes returns a different result from other SHA256 algorithums.
I'm calling it as follows:
byte[] saltValueBytes = ...
1
vote
5answers
109 views
What have in mind when they say that it need to store password hash in the database?
I am a novice in web development. I use Java and try develop simple pilot application with registration functionality. I do not want to store a user password in the database explicitly for security.
...
1
vote
0answers
154 views
Safely generated encryption key from user's password?
I'm building a Django website with MySQL. I've already decided to use Django's built in pbkdf2-sha256 with randomly generated salt hash to store a user's password.
However this website will also need ...
4
votes
2answers
152 views
Why is SHA512Managed not FIPS Compliant?
As the title asks, why does SHA512Managed encryption cause an InvalidOperationException when the FipsAlgorithmPolicy is active on a machine?
Is it not secure enough for the FIP standard, or is it too ...
1
vote
1answer
77 views
Hashing Passwords [closed]
I am creating a website where a user can register and login to the website. I am going to save the username and password in a mysql database but I want to hash the password. What is the safest hashing ...
-1
votes
1answer
113 views
Hashing versus encryption [closed]
I know the differences between hashing and encryption. But if an attacker knows how the hashing algorithms work then will hashing have the same weaknesses as encryption?
0
votes
1answer
71 views
Unique static-length ID with checksum
There are users in the database with auto-increment IDs (1,2,3,...999999). What I need is to generate a random-looking static-length (e.g. 8 or maybe 10 characters) ID from the user_id, which can be ...
0
votes
1answer
84 views
Java website to Rails, reproducing password encryption
Some time ago i wanted to play with Google Appengine and I made a java website. Now i have the need to get away from it and i would like to migrate to Rails, the website per se is not an issue but in ...
3
votes
1answer
68 views
how to append a hash code to the same file from which it is calculated in c# [closed]
i want to append the hash code to the file from which it is computed.(the file can be of any format)and then encrypt the result using RSA algorithm. and now i want to decrypt the encrypted result and ...
1
vote
1answer
303 views
Is my method of encrypting encryption keys secure?
I'm writing a Rails 3 web app in which anonymous users will be able to enter details about an event and have them encrypted in my database, retrievable only by that user or anyone with the per-event ...
1
vote
3answers
267 views
Creating a unique URL safe hash
I want to hash/encode a unique integer (database ID) to create a similarly unique string.
It needs to meet the following requirements:
Must start with a letter or number, and can contain only ...
2
votes
2answers
298 views
Which OTP (one-time password) algorithm do banks use on their password generator token? [closed]
Many banks offer some token devices in order to create passwords for one time usage. I wonder which OTP algorithm they use? Is it HOTP or TOTP?
2
votes
1answer
224 views
ObjectDisposedException When using MD5 ComputeHash
I am getting ObjectDisposedException: Safe handle has been closed.
This is my code:
I am trying to create an interface and implementing class that will enable me to get a string, attach to it a ...
-1
votes
3answers
113 views
Hashing Salting
Hello sorry if this may be a stupid question, I am gonna try a sha+salt for my site. wondering how to randomize my salt. Upon registering so both of them will be hashed into the database. Also is ...
1
vote
1answer
156 views
How should I hash my passwords using PHP? [duplicate]
Possible Duplicate:
Secure hash and salt for PHP passwords
I try to create a function that hashes my password with salt using haval160,4 hashing algorithm. But I do not understand it's ...








