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

0
votes
0answers
14 views

Android app sending hashed password and salt to and from server

My android app takes plain text password, uses jasypt to hash it with randomly generated salt. I then send both the salt (make string out of salt byte array) and hashed password to server (REST) which ...
1
vote
1answer
29 views

Unable to get entity using named query on jasypt encrypted column

I have an Employee entity having ssn field encrypted using jasypt. Following is a mock definition: @TypeDef(name = "encryptedString", typeClass = EncryptedStringType.class, parameters = ...
1
vote
2answers
48 views

SecurityException with Bouncy Castle [duplicate]

I am on Mac OS and getting this issue after performing software update on my mac. Caused by: java.lang.SecurityException: JCE cannot authenticate the provider BC at ...
0
votes
0answers
35 views

Jasypt with Hibernate and subclass

I have a class Y (field m,n,o) with two subclasses A and B. Is there a way to have jasypt encrypt the "m" field only for subclass A (this field is varchar(255) in db) but not for B? or do I have to ...
0
votes
0answers
105 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 ...
0
votes
0answers
25 views

BadPaddingException with Jasypt library

I am not sure whether this is a bug or I am doing some mistake. In either case, I need help from somebody. We have incorporated Jasypt along with Spring 2.05 in our web application in which we are ...
1
vote
1answer
41 views

Jasypt 1.9 : Encrypting passwords with exclamation

I am using Jasypt 1.9, and when I try to encrypt a password with exclamation it fails. It works fine without exclamation for ex: ./encrypt.sh input="abc!abc" -sh: !abc": event not found Jasypt ...
1
vote
1answer
63 views

Encrypted password into configuration file for Spring3.1, Hibernate4 and Jasypt1.90 is not working with MySQL server 5

I have configured Spring3.1, Hibernate4 and Jasypt1.90 for encrypted password into configuration file with MySQL server 5 but Its not working and gave the following error: Caused ...
0
votes
0answers
198 views

org.jasypt.exceptions.EncryptionOperationNotPossibleException

I am using Jasypt-1.9.0 with Spring 3.1 and Hibernate 4.0.1. I have a requirement in my application to connect to database whose password(root) is stored in the encrypted form in the property file ...
0
votes
1answer
67 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
1answer
154 views

Jasypt Integration With Hibernate 4 and spring 3.1

I am using Spring 3.1 + Hibernate 4.1 in my application. I want some fields(like password) to be stored in encrypted form using Jasypt. But in the integration i am facing exception below: ...
0
votes
1answer
215 views

How Do I use Jasypt with springs autowire?

I have see some solutions for this without the autowire but I am trying to get it to work with with the auto wire. I have been trying this since last week but found no solutions that worked in my ...
0
votes
0answers
71 views

Jasypt digesting application properties in spring 3.1

I am going through JASYPT(1.9.0) documentation. They suggest one-way digest for good security. Additionally It does not require a password to encrypt. >./digest.sh input='mytext'. However when I ...
0
votes
0answers
103 views

Password Management (use-case) [closed]

Let's suppose I have a program and the user enter a password, and the data is stored encrypted using AES-128. Data is encrypted with a password other than the user (random password based key ...
0
votes
1answer
276 views

Configuration using JPA/Hibernate and Jasypt

I'm trying to use JPA + Hibernate 4.5.1 in a JSF/Primefaces project. I'm using c3p0 for connection pooling. When the application is being started, c3p0 attempts to initialize the pool but ...
0
votes
0answers
68 views

When I used jasypt in hibernate4 i got java.lang.NoClassDefFoundError: org/hibernate/connection/DriverManagerConnectionProvider

I'm using hibernate 4 and when i used jasypt to encrypt DB password i got java.lang.noclassfounderror: org/hibernate/connection/DriverManagerConnectionProvider This is HibernateUtil class to get the ...
1
vote
1answer
97 views

What password length should I use for a Jasypt-hashed password?

I'm using Java 6, Jasypt, and BouncyCastle to generate hashed passwords. I'm storing them in a MySQL 5.5 db with a default UTF-8 character encoding. I'm trying to figure out how long my VARCHAR ...
1
vote
1answer
211 views

How do I get Spring security to generate the same password as what the Jasypt command line tool generates?

I'm using Jasypt 1.9.0, Spring 3.1.1.RELEASE, and Maven 3.0.3. Using the Jasypt command line tool, I generate passwords like so … ./digest.sh input=admin ...
0
votes
1answer
122 views

Getting “org.jasypt.exceptions.EncryptionOperationNotPossibleException” when trying to login

I'm using Jasypt 1.9.0, Spring 3.1.1.RELEASE, and Maven 3.0.3. When I enter a username and password on my login page and submit, I get the following error … ...
0
votes
1answer
96 views

No such property: GormEncryptedStringType when installing jasypt in grails

I'm trying to use Jasypt plugin on my grails project. I followed the setup described on the wiki but I got the following exception: ERROR context.GrailsContextLoader - Error executing bootstraps: ...
0
votes
1answer
298 views

what is padding for PBEWITHSHA256AND128BITAES-CBC-BC

What is padding for PBEWITHSHA256AND128BITAES-CBC-BC (Bouncy Castle) Sorry for tiny information, let me elaborate more background of the question. There have two systems. One is java (A) and another ...
1
vote
1answer
236 views

Can't configure Jasypt + Hibernate

I use Hibernate3 with a MySql DB and am trying to add the Jasypt library to handle encryption of user password. I configured Jasypt in the hibernate.cfg.xml as follows: <property ...
0
votes
0answers
57 views

Jasyp security issue

As I reported in the Jasypt User Forum I see a security issue in the way jasypt encrypts properties. In my application confiuration files I encrpt properties using the ...
0
votes
1answer
146 views

Problems with Jasypt, package-info.java

I am using JPA with Guice, Jasypt and GWT+Jetty server, I am trying to create a custom types for the encrypted columns. I have create the package-info.java where I have the custom types. The ...
1
vote
2answers
415 views

Encryption Exception while loading application properties ( Java jasypt encryption)

When trying to install a module using Maven, it throws up the following error: org.jasypt.exceptions.EncryptionOperationNotPossibleException: Encryption raised an exception. A possible cause is you ...
0
votes
0answers
85 views

ClassNotFoundException for SaltGenerator class of jasypt

I am using jasypt1.5 in my project and getting class not found exception for SaltGenerator class. Jasypt's jar file is on classpath as in case I remove salt generator part from my code, everything ...
0
votes
1answer
104 views

Java Installer for encrypted password

I would like to create a installer for a Java app, and have found some great apps that do it. The problem is I am using Jasypt to encrypt a password used in the properties file. Currently the user ...
0
votes
1answer
136 views

Querying for data using jayspt and hibernate

Hey guys I'm using Hibernate to store user models in a db, well found out that you can use jayspt in tandem to abstract the encryption of usernames and passwords away from the business logic. Here's a ...
0
votes
1answer
195 views

MacRoman vs UTF-8

So what I am basically trying to do is pull out byte data from a source encrypt it and then store it in the file system. For encryption I am using jasypt and the BasicTextEncryptor class. And for ...
0
votes
1answer
284 views

Password Encryption between Java Swing app and Postgres db

I'm building a system that has a Java Swing front end accessed a postgres database. Prior to discovering Jasypt this week, I had originally planned to use Postgres' own encryption mechanism. It worked ...
0
votes
0answers
470 views

Jasypt with Hibernate - Registering the Encryptor in HibernateUtil

I am trying to encrypt the passwords using jasypt and Hibernate. I am using hibernate3 in my code. Here's my Hibernate Config file. <property ...
1
vote
1answer
1k views

Getting error org.jasypt.exceptions.EncryptionInitializationException: Password not set for Password Based Encryptor

I am using jasypt-1.9.0 for encryption. Jdbc.properties jdbc.driverClassName=oracle.jdbc.driver.OracleDriver jdbc.url=jdbc:oracle:thin:@localhost:1521:ORCL jdbc.username=testuser ...
0
votes
0answers
179 views

jasypt with Hibernate

I want to use Jasypt with Hibernate in servlets. I refered Jasypt here. It says how to configure Hibernate. But, still it is not clear that how I can handle session to save & retrieve results. I ...
1
vote
3answers
283 views

Constant result for encryption of string in Java

I would like to encrypt a string ( user's email ) and always obtain the same resulting string I am saving the user's email as login user name, because I have searches on that field ( for example, ...
2
votes
2answers
695 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
-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 : ...
0
votes
2answers
142 views

How to disable Grails Jasypt plugin encryption during integration tests?

Is there a way to disable encryption, or possibly use a trivial algorithm during integration testing of a Grails project? There is quite a bit of overhead in the field level encryption that doesn't ...
2
votes
2answers
490 views

OptimisticLockException with JPA/Hibernate when trying to read encrypted text

We need to encrypt Strings while storing them with JPA and decrypt it when reading it. First of all, we can't use some hibernate config or any other config file because our properties are generic. ...
0
votes
2answers
404 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
942 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
1answer
271 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 ...
4
votes
1answer
1k 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(); ...
0
votes
1answer
346 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 ...
4
votes
1answer
323 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 ...
0
votes
1answer
154 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 ...
-1
votes
2answers
252 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 ...
3
votes
1answer
693 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() { ...
0
votes
2answers
307 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. ? ...
3
votes
1answer
5k 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 ...
0
votes
1answer
2k 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 ...

1 2