Tagged Questions

6
votes
6answers
10k views

Password encryption with Spring/Hibernate - Jasypt or something else?

In a Java application stack with Spring & Hibernate (JPA) in the Data Access Layer, what are good methods of applying the password encryption (hopefully using annotations), and where can you find ...
3
votes
1answer
111 views

Store encryption keys in Java code?

I am using JASYPT for encryption decryption of passwords in our Java based software. This is how, we encrypt the password: StrongTextEncryptor textEncryptor = new StrongTextEncryptor(); ...
2
votes
1answer
216 views

Encryption by jasypt

import org.jasypt.util.password.*; public class encrypt { private static BasicPasswordEncryptor passenc; public encrypt() { passenc=new BasicPasswordEncryptor(); } public static void useradd() { ...
2
votes
2answers
1k views

SHA2 password storage with Java

I'm attempting to make a XML-RPC call that requires HmacSHA-256 hashing of a particular string. I'm currently using the Jasypt library with the following code: StandardPBEStringEncryptor sha256 = ...
2
votes
3answers
3k views

How to find out what algorithm [ encryption ] are supported by my JVM?

I am using Jasypt for encryption. This is my code: public class Encryptor { private final static StandardPBEStringEncryptor pbeEncryptor = new StandardPBEStringEncryptor(); private final ...
1
vote
0answers
60 views

When using Jaspyt to encrypt Spring properties files, is an environment variable really a secure place to store the master password?

I'm using Jaspyt and Spring 3 in my Java project. I currently store the database connection properties in a properties file. The user name and password are plain text, so I've been looking at using ...
1
vote
1answer
721 views

org.jasypt.exceptions.EncryptionOperationNotPossibleException in Tomcat

I'm using the Jasypt encryption library to encrypt/decrypt some text. This code is embedded in a WAR file and deployed to a server. When running locally, and in unit tests, the encrypt/decrypt cycle ...
1
vote
1answer
758 views

String Encryption with JASYPT - Java

I want to encrypt a string, but the standard java libraries are too complicated for me. So i turned to JASYPT, Its pretty simple to use and understand, However when i import the library to Eclipse 3.6 ...
0
votes
1answer
84 views

Adding system param and Application at context Issue

FIRST PART : I was asked to add -DAPP_ENCRYPTION_PW = pw in my startup command because of the properties file to store the db password encrypted instead of plaintext? :S So I added it in JAVA_OPTS. ...
0
votes
0answers
119 views

java.lang.NullPointerException at org.jasypt.encryption.pbe.config.SimplePBEConfig.getPasswordCharArray

I have a war file which I imported in eclipse and when I tried to run it gave me this error : [MSC service thread 1-1] ERROR org.springframework.web.context.ContextLoader - Context initialization ...
0
votes
1answer
109 views

encrypting all values in a sql server coloumn

I am using java over sqlserver, and have a table with an unencrypted creditcard column. How do i encrypt all the fields in the coulumn using AES encryption ? a sql or java \jdbc\hibernate solution ...
0
votes
1answer
788 views

Miffed… Simple Code, but … org.jasypt.exceptions.EncryptionOperationNotPossibleException

I have used this code or something similar time and again within the server code on my web apps, but now I am trying to make a command line utility to work with the maintenance backend. Keep on ...
0
votes
1answer
656 views

How to decrypt a Jasypt-encrypted string in PHP?

This may be an impossible question, but I am migrating a legacy system from Java over to PHP, and I need to be able to decrypt strings encrypted with Jasypt in PHP. According to the documentation, ...
0
votes
2answers
717 views

Error implementing Jasypt with Hibernate 3 and Struts 2

I'm trying to encrypt passwords in a webapp using Jasypt with hibernate 3. I followed the instructions on the jasypt website. Here's my hibernate mapping : <hibernate-mapping ...
-1
votes
2answers
95 views

Float encryption with Jasypt issue

I need to encrypt float values and I am using Jasypt to achive this. As far as I know, Jasypt does not support float encryption and only supports BigDecimal. Therefore, I am converting float values ...