0
votes
0answers
14 views

JBoss salted DatabaseServerLoginModule on AS 7.1

I'm trying to set up a secure login for my application. To achieve this I wanted to salt my hash and maybe use an iteration count. The official forums don't seem to answer that so I was wondering how ...
0
votes
0answers
111 views

Jasypt encrypted String not being able to decrypt on another machine

Our security department wants us to use 256-bit encryption to encrypt SSN, Names of Users etc, so we decided to go with JASYPT with the sample code below: encryptor = new ...
4
votes
4answers
91 views

Junit test case

public static String generateSaltString() { SecureRandom random = new SecureRandom(); byte[] salt = random.generateSeed(12); return byteToBase64(salt); } Wondering how to write test ...
0
votes
1answer
69 views

Why this MD5 result with Salt has “==” in the end of result string? [duplicate]

I have java code that use jasypt (Java Simplified Encryption) library: StandardStringDigester digester = new StandardStringDigester(); digester.setAlgorithm("MD5"); ...
0
votes
2answers
82 views

AES decryption is always null

I tried using salt to decrypt a AES encrypted message but it always returns null value. Can anyone look at it where am i doing wrong? public static String decryptMessage(String encryptedMessage, ...
3
votes
3answers
398 views

Can i avoid the cipher reinitialization per encrypt/decrypt call when using random salts per encryption?

Edit Actually reinitializing the cipher is not that slow. Creating the key itself is slow because of the iteration count. Also, the iteration count is ignored and never used in the encryption ...
0
votes
2answers
305 views

How to stock and use a shiro's salt from database

I use shiro in application for the authenticate. I use hashed password with a salt and I store them in my database like this : private User createUserWithHashedPassword(String inName, String ...
4
votes
2answers
675 views

How to use the Shiro's SaltedAuthenticationInfo?

I work on an authentication component for my application. I'm using the Apache Shiro API with salted password. I create a new user with the salt like in this example : ByteSource salt = ...
0
votes
1answer
236 views

Java autentication of Drupal passwords

I try to mimic the way Drupal 7 is checking for a correct password in Java. Found some code as a guideline here: ...
1
vote
1answer
661 views

How to implement customized SHA-256 salt per user login/out with db spring 3.1 security?

I am reading the doc Spring 3.1 security documentation extensively, but I can't find answers to all my questions. In a spring web application, based on form login (user + pwd), I want to salt user ...
2
votes
2answers
410 views

How do I check for a salted password in Spring Security?

I am using Spring 3 and grabbing users from a MySQL database. Right now, in testing, I have a user with a MD5 password. And I can authenticate just fine using that. However, we want to be a little ...
1
vote
2answers
509 views

java SecretKeyFactory password hashing doesn't work properly

I've got a web application and I want to store password hashes in a remote database. I wrote a simple class, which generates a password hash. Two public methods are available: 1. encrypt - encrypts ...
1
vote
1answer
176 views

Hash in Java with or without salt

I'm trying to make a method for encoding to SHA(128,256,512) with or without salt. The method for no salt is private static String crypt(String chain, String method) { MessageDigest md; try ...
2
votes
2answers
700 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
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 ...
0
votes
1answer
228 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: ...
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 ...
0
votes
1answer
464 views

Java library for multiple different types of password encryption

I'm looking for a library (or preferably built into java) that will able to take a password and it's hash, determine what type of encryption was used and validate the password. Essentially the java ...
3
votes
2answers
434 views

Hashed and Salted Password is not always the same

I am using Apache Shiro as my security layer in my Spring app and I am encountering a really weird situation. Firstly, this is how my security system is set up. When a user registers their password ...
0
votes
3answers
254 views

How can I hide the salt code in Flash or Java?

I need to be able to transmit data from a Flash browser application to a PHP file on a web server, both securing and validating the data whilst and at the same time trying to prevent unauthorised ...
2
votes
1answer
596 views

Hashing and Salting passwords with shiro

In apache shiro the default hash implementation is as follows: MessageDigest digest = getDigest(getAlgorithmName()); if (salt != null) { digest.reset(); ...
0
votes
2answers
2k views

Random salt md5 implementation, including new registration / change password

I am trying to implement random salt md5 algorithm on an existing application. User passwords are stored in database as md5 hash. For existing users the following steps are followed On client side ...
1
vote
3answers
687 views

Java and Cryptographically Strong Random Numbers

I have been doing some work with Java's SecureRandom class to generate salts for later encryption and password hashing (I am generating separate salts for each task). The code I have been using is as ...
87
votes
1answer
11k views

Do I need to store the salt with bcrypt?

bCrypt's javadoc has this code for how to encrypt a password: String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt()); To check whether a plaintext password matches one that has been ...