Cryptography function that takes random bits and a string (typically a password) and uses a one-way hash to provide a new string that can be used for authentication without providing access to the original string. If a salt function uses enough random bits, the resulting string is generally ...
0
votes
1answer
80 views
how do I store the HMAC key irretrievably in the database?
I'm trying to build a API service for a system that (due to many reasons) does not have the main database in a completely secured fashion.
So, my question is - how do I salt the HMAC in such a manner ...
3
votes
1answer
2k views
A required anti-forgery token was not supplied or was invalid
@using (Html.BeginForm("Create", "Posts", FormMethod.Post, new { id = "publish" }))
{
@Html.AntiForgeryToken("Posts/Create")
<input type="text" id="url" name="url" />
<input ...
2
votes
2answers
708 views
Getting Password Salt when Using Jasypt
I want to use Jasypt to encrypt user passwords using a random Salt. Is it possible to get random slat from Jasypt? How could I get it?
Thanks,
Feras
0
votes
2answers
1k views
Encrypting passwords in ASP.NET MVC 3
I'm trying to create a custom membership system in ASP.NET MVC3.
I know there are many free and open source providers, but I'm doing this to learn more. My question is about encrypting passwords.
...
-2
votes
1answer
257 views
Salt location , salt hiding
i have a question regarding the following scenario:
I want to use jasypt to encrypt my password and use a certain salt for encryption.
Does it make sense(or is there any security implication) if :
...
1
vote
1answer
628 views
how to get/set the salt for a JdbcRealm
I am attempting to use the Shiro JdbcRealm and SHA256 hashedcredentialsMatcher. I need to update a legacy database and assign the appropriate salt for each user (via a batch routine).
how do I ...
1
vote
4answers
312 views
Beginner PHP learner trying to use Salt encryption
I'm trying to put together a PHP login script and have noticed that storing my database paswords in plain text form is not secure. Is my connect.php file secure? How would I use a salt encryption into ...
1
vote
2answers
690 views
Md5 with salt encoding
I am migrating some data from joomla based cms system to spring based Java EE environment .
During analysis I found that md5 implementation of passwords is not same as joomla ??? Any idea why ...
0
votes
2answers
652 views
Authenticating plain text password against md5 hash
Hello and thank you for reading,
I have a task to authenticate a un / pw pair against a password stored in a MySQL database which has joomla serving as the CMS / frontend.
The joomla web application ...
0
votes
2answers
2k views
Spring security password hash + salt
I am working with a legacy application that stored passwords in plaintext. I have ported the application to spring 3 mvc + security. I have also successfully gotten spring security handling the ...
1
vote
2answers
422 views
C#: comparing the password hash with the user input different sizes , when Authenticating the user
I have made a user registration where I have salted the user password and hashed it using SHA256.
later, when the user needs to log into my system I need to have his password salted and hashed, so I ...
2
votes
2answers
193 views
Salting Passwords
I could really use some clarification as to how using a random salt protects against rainbow table attacks. It just isn't clicking for me.
Suppose there is a dumb application that requires passwords ...
2
votes
3answers
3k views
Spring Security salt for custom UserDetails
I would like to add salt like:
PasswordEncoder encoder = new ShaPasswordEncoder();
userDetails.setPassword(encoder.encodePassword(userDetails.getPassword(),saltSource.getSalt(userDetails));
...
-1
votes
2answers
310 views
salt and hash encryption/decryption for links
ok, so i have some links that will be generated for some ads on my website via php. Now the problem i have is simply i understand how md5 works and it's not an encryption and it can not be re-rendered ...
1
vote
2answers
650 views
Why does salting a hashed password increase security?
I've been doing some research about securely storing passwords in a database. It is generally suggested that you use a salt. As explained in one of the answers in Secure hash and salt for PHP ...
0
votes
1answer
2k views
convert plain-text password to MD5 salted hash
For example under FreeBSD passwords are stored in /etc/master.passwd like this:
$1$7wtGfwgp$772bEQInetnJKUNtLM0Xt/
The password I used was "Test11". As I understand, $1$ means that it's a hashed ...
2
votes
3answers
86 views
Generating salts from other user fields
Right now I have a "salt" column and a "password" column in the database (the user table), both varchar(64) and take sha-256 hashes as values.
Do you think it's a good idea to eliminate the salt ...
1
vote
2answers
102 views
Why should't I use an encryption salt I enter myself and use a function to randomize a salt for me?
I am just typing a salt and on php documentations, people always use some random variable function. What is the disadvantage of typing a salt instead of generating it?
1
vote
2answers
425 views
Can anyone describe the difference between password encryption and hash (sha-256)?
I need to save the password to database.I get confused in encryption,hash using sha-256 ,salt generation method .If any one explains the basic concept behind this then it will be helpful
2
votes
3answers
569 views
What is the advantage of salting a password hash?
I have just read many, many articles on SO about hashing passwords with salt but I just cannot find an answer to the particular query/confusion I have.
Let's say I have just done this method for ...
4
votes
1answer
666 views
How to secure HTTP JSON web service in .NET WCF
So, I want to secure a http json web service.
I will have a bunch of users of the system who will all have a username and password.
I only want to store a randomly salted hash of user's passwords in ...
0
votes
1answer
91 views
Implementing a file format to be used with Encryption - Cocoa
I need to implement salts in my encryption, but to do so, I need to store it in a file format that I need to create so I can later retrieve it to decrypt. I'm a noob when it comes to encryption. The ...
13
votes
1answer
6k views
Spring Security Salt
I'm trying to add a salt when adding a new user/pwd, but the docs seem to be missing how to do this.
Here's a basic example:
<authentication-manager>
<authentication-provider ...
5
votes
4answers
163 views
Under what scenario will a hacker get the table but not the PHP code?
Ok, so I understand the value of the salt in my hashed passwords... kind of.
I am setting up a basic authentication scheme where I am setting passwords and users don't have the ability to set the ...
5
votes
1answer
783 views
Android: Do the random SALT bytes passed to AESObfuscator need to stay the same?
I'm implementing licensing in my Android application, and there is an array of 20 bytes that need to be passed into the AESObfuscator that is passed to the ServerManagedPolicy object. Can this array ...
0
votes
2answers
663 views
clarification for crypt SHA-512 algorithm (c#)
EDIT: Sorry I forgot to mention, I'm not using the implemented sha512 crypt because as far as I can tell it doesn't involve a salt value or a specified number of rounds to compute the hash with.
Okay ...
1
vote
1answer
448 views
AES Encryption using IV,Salt,RFC2898 iteration, Key Generation using SHA1 algorithm in iPhone
I am here again with the problem related AES Encryption. The problem is I need to encrypt the string using AES encryption technique with Intialization Vector, Salt, RFC2898 iteration and Generate a ...
0
votes
1answer
229 views
converting java sha512crypt to c#
I am trying to duplicate the following JAVA code into C# but I don't think I'm doing it right o_o
(The code is taken from ftp://ftp.arlut.utexas.edu/pub/java_hashes/Sha512Crypt.java)
JAVA variables:
...
0
votes
1answer
50 views
Password storing schema and authentification sound?
we're implementing a new ecommerce platform, and we want to make sure not to make mistakes that can be avoided in the security department.
This time, I took a look at the password storing and ...
2
votes
4answers
514 views
Salted password hashes
I am trying to create a login system for a web application, but I am stuck on a couple of points. I am storing the password in my database using a sha2-512 hash with a 128 bit random salt.
However I ...
0
votes
2answers
193 views
Trying to wrap my head around PHP password salt/encryption
Right now I am developing an application that will allow online registration. For development, the password check just checks a MySQL row to make sure the value matches the value in the input field. ...
1
vote
2answers
149 views
How to store salt and IV in file cocoa?
So I have implemented salts and IVs, but the decryption is now a bit buggy. Of course, I need both the salt and IV for decryption as well, but the user can't enter that... I need to be able to store ...
34
votes
2answers
13k views
Spring Security Custom Authentication and Password Encoding
Is there a tutorial out there or does anyone have pointers on how to do the following with Spring-Security?
Task:
I need to get the salt from my database for the authenticating username and use it ...
2
votes
2answers
168 views
Hashing gone wrong
I'm using the same function to hash values for comparison during login as I am to hash the passwords when users register:
Public Shared Function Compute(ByVal text As String, ByVal algorithm As ...
1
vote
2answers
635 views
Openssl asymmetric encryption without salt (in php)
I need to encrypt a string data with SSH-2 RSA 1024 bit ( with the public key ) then with RMD-160 algorithm. I do it like this:
generate private key:
openssl genrsa -des3 -out privatekey.key 1024
...
2
votes
1answer
121 views
Any good cocoa libraries that include both salt and IV AES Encryption?
I am just polishing up my encryption tool, but I noticed I am missing the salt, which is importnat in order to make the encryption more secure. I am using some built in cocoa methods, but they don't ...
2
votes
2answers
285 views
Confused about salting (Cryptography)? [closed]
I'm a newb at this so this question is prob really easy. I just don't quite understand salting.
Without salting and with sha1 you can hash a password to be sha1('password') and to verify a user you ...
0
votes
1answer
561 views
Android: Secure connection with a database
I'm developing an Android app.
When the user pushes a button, I wanna add the unique identifier of the Android device and some other data to a database.
The problem is: How can I prevent that other ...
1
vote
2answers
516 views
How does Unix SALT help protect passwords?
I was in class the other day and we were talking about Unix SALT and how it makes the passwords much harder to guess. My issue is that the SALT is stored in plaintext right next to the hashed ...
5
votes
3answers
817 views
Salt a key for secure encryption Cocoa?
I was reading a tutorial on how to salt a key to make your encryption secure, but couldn't make much of it. I don't know a lot about cryptography, and need some help. I am using commoncrypto to ...
2
votes
3answers
3k views
How to build a secure captcha using jQuery UI Slider?
I'd like to build a fancy and easy to use captcha for my registration by using a slider on which the user can proof he is a human and no script.
So far I implemented the slider with jQuery UI Slider, ...
4
votes
2answers
2k views
Difference between SALT and KEY. Encryption
Alright, so im trying to learn a little about Encrypting messages in my java application. I just found out that SALT and KEY aren't the same.
Can someone help me understand what the difference ...
4
votes
2answers
5k views
Java AES Encryption with salt
Alright, turns out I suck at Encryption/Decryption. I just dont get it.
How can I make Java encrypt String message1 = "hello world"; with String salt = "mySalt"; using AES encryption? also how can I ...
1
vote
2answers
594 views
Hash from “email+salt ” as a token to verify email
I'm verifying user email address.
The way most people tell is to create some unique token store it in db and
send to user.
I'm doing it with just hashing (sha256) email addres with sitewide salt
...
1
vote
1answer
566 views
When using HMAC for message signing, is it wise to salt the key, message, or both?
Say I'm designing a library to sign/verify messages with SHA-256 HMAC. If the end user uses a weak shared key and sends a lot of short messages, I assume there would be risk of an attacker discovering ...
1
vote
1answer
95 views
How to create a 'Super Administrative' Password for member login site
We maintain a website built on LAMP stack that allows members to log into their profile. While we have an admin interface to handle most tasks, there are times it is 'necessary' to log in "as" the ...
0
votes
6answers
415 views
How does a salt protect against a dictionary attack? [duplicate]
Possible Duplicate:
What is the purpose of salt?
I've just been reading up a bit about the use of salts, and the example I've been reading gives that of adding a salt to a password before ...
0
votes
1answer
77 views
Why does this code encodes random salt first as hexadecimal digits?
I'm looking at some existing code that is generating a salt which is used as input into an authentication hash.
The salt is 16 bytes long, and is generated by first using an OS random number ...
7
votes
5answers
215 views
What is the point of salt and hashing if database is accessible?
I just learned the concept of hashing ("Hey! don't forget the salt!") and using salt to make the password secured.
Hashing it is a one way encryption (actually not encryption but hashing) so it ...
1
vote
3answers
495 views
Random salt + hashed pass or a random salt + crypt()'ed pass?
I'm trying to make a more or less secure login system for my site, I haven't had much time with securing things so I'm learning as I go along. Wanted to hear some views on which of the following is ...
