Tagged Questions

Jasypt is a Java-based encryption library, designed for ease of use with minimum necessary knowledge of how cryptography works.

learn more… | top users | synonyms

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
105 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(); ...
3
votes
2answers
432 views

Jasypt StandardPBEStringEncryptor setting password in spring bean configuration file

When using Jasypt's StandardPBEStringEncryptor we have to set password explicitly in spring bean configuration file. Is it ok and secure to have the password in the bean configuration file? Will it be ...
2
votes
1answer
212 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
58 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
702 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
745 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 ...
1
vote
1answer
226 views

ManyToOne reference with encrypted fields gives doesn't exist error using Jasypt

I have a problem on the following situation: In my Spring, Hibernate application I got a User Entity and a UserCategory Entity. The table of the user entity got a username as identifier. This ...
0
votes
2answers
20 views

Using Jasypt: The checkPassword method is returning false when the passwords should match.

To give you some background, my team and I are creating a program that stores usernames and passwords in a database. We are using Java and interacting with the Database through java code. We use ...
0
votes
1answer
83 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
116 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
73 views

Encryption on Android

I am using Jasypt on Android to provide encryption functionality. I use it to hash passwords under SHA-1 and am looking to use it to encrypt binary data Jasypt currently uses PBEWithMD5AndDES I ...
0
votes
1answer
108 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
43 views

migrate users while modifing password encryption

ok i have this application using a db called EXAMPLE. this has been going on for a while. applications uses a kind-of-old version of hibernate. users' password are stored as ...
0
votes
2answers
137 views

Jasypt and javascript

Does anyone know how to encrypt in javascript (maybe with sjcl?), post to a webapp and decrypt with java? I wish to intercept some of a form data, encrypt it and then post to my spring application. ? ...
0
votes
1answer
779 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
652 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
714 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 ...
0
votes
0answers
116 views

How to declare different non-JPA annotations on embedded classes

@Embedded public class EmbedMe { private String prop1; private String prop2; } @Entity public class EncryptedEmbedded { @Embeddable private EmbedMe enc; } I am current using Jasypt ...
-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 ...