jasypt Questions

5

Solved

I am using jasypt 1.9.2 in Windows 7 x64 cmd. Here's encrypt.bat content: ECHO ON set SCRIPT_NAME=encrypt.bat set EXECUTABLE_CLASS=org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI set EXEC_CLASS...
Isherwood asked 20/11, 2015 at 12:32

3

Solved

Jasypt (https://github.com/jasypt/jasypt) and the according Spring Boot integration (https://github.com/ulisesbocchio/jasypt-spring-boot) do not really seem to be alive any longer. issues with the...
Chippewa asked 11/5, 2022 at 9:13

6

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 ...
Burger asked 21/3, 2013 at 9:57

3

Since yesterday my textencrypter(jasypt) stopped working for no reason. Here is a code example and the error msg. Does anybody know what is going on? Code example: StrongTextEncryptor crypter = ne...
Thorathoracic asked 27/7, 2020 at 11:32

3

I am using jasypt for encrypting application.properties in a Spring Boot application. My goal is to update my integration tests so that jasypt is used with test encryptor password. My problem is th...
Atelectasis asked 5/5, 2020 at 10:41

2

I have jasypt-spring-boot-1.17 with spring version "4.2.5.RELEASE" and spring Boot version "1.5.3.RELEASE". I am using the first method from this website (https://github.com/ulisesbocchio/jasypt-s...
Moulder asked 3/10, 2018 at 20:27

3

Solved

I am using Jasypt to store our database passwords in our hibernate config file in non-clear-text format. Eg instead of <property name="hibernate.connection.username">user1</property&gt...
Mcpeak asked 10/12, 2013 at 14:38

6

Solved

I am using Jasypt for encryption. This is my code: public class Encryptor { private final static StandardPBEStringEncryptor pbeEncryptor = new StandardPBEStringEncryptor(); private final static...
Blaney asked 10/9, 2010 at 8:53

2

Solved

I am using Jasypt's CLI for testing encryption and decryption. The encryption is successful for all the algorithms but decryption fails for stronger algorithms. Here is the encryption and decryptio...
Nial asked 19/7, 2019 at 22:51

2

Solved

I try to use Jasypt with Bouncy Castle crypro provides (128Bit AES) in a Spring Application to decrypt entity properties while saving them with Hibernate. But I always get this org.jasypt.exception...
Elisha asked 16/5, 2015 at 16:30

1

I'm running into an issue identical to Command line Jasypt client encryption 'Operation not possible' however that post is for a much older version of Java. I've checked the path listed fo...
Admiration asked 16/1, 2020 at 20:40

3

Solved

I am using spring boot:2.2.2.RELEASE when i tried to add jasypt functionality to hide my password i got the following error Unable to decrypt: ENC(MyEncryptedPass). Decryption of Properties failed...
Flinty asked 4/1, 2020 at 12:27

3

Solved

Until now, I was using jasypt to encrypt a string before storing it on disk on app closing, and later when opening the app for decrypt the string after retrieving it from disk. It was super easy w...
Dromond asked 8/3, 2019 at 20:24

2

How to decrypt the encrypted password using Jasypt library? package com.uk.mysqlmaven.jsf.test; import org.jasypt.util.password.StrongPasswordEncryptor; import org.jasypt.util.text.StrongTextEncry...
Handkerchief asked 27/2, 2014 at 11:45

4

I am trying to configure Jasypt with Spring Security. My configuration file looks like this: jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:8090/sample jdbc.username=ENC(****...
Thomey asked 7/8, 2013 at 13:3

2

Solved

I am using Jasypt APIs (version 1.9.2) for encryption and decryption. While listing the algorithms using the command line interface tool, I am getting the following list. listAlgorithms.bat PBE A...
Ruthenic asked 26/3, 2018 at 12:12

1

I'm working on a program that needs to store binary information encrypted at rest. Unfortunately, I can't seem to find a resource that explains which encryption schemes are best for different...
Nonresistance asked 28/2, 2016 at 17:17

1

With spring boot version 1.2.3 (also tested it with 1.2.5), I am following creating-a-custom-jasypt-propertysource-in-springboot and Spring Boot & Jasypt easy: Keep your sensitive properties en...
Diminish asked 5/8, 2015 at 6:9

2

Solved

We're using Jasypt to encrypt some config properties (database passwords) but since the decryption key is stored on each environment's file system we have to do some manual @Bean configuration to l...
Ona asked 29/9, 2014 at 8:45

2

Solved

I'm using Spring Boot to create a simple web application which accesses a database. I'm taking advantage of the autoconfiguration functionality for the DataSource by setting up spring.datasource.* ...
Therefor asked 27/6, 2014 at 11:49

3

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 cyc...
Achromic asked 25/5, 2011 at 3:18

1

Trying to use the encrypt.sh utility and my password has special characters: ./encrypt.sh input="$%#!" password="your_jasypt_password" algorithm="PBEWITHSHA256AND128BITAES-CBC-BC" keyObtentionIter...
Aleshia asked 15/10, 2014 at 17:51

3

Solved

I'm having trouble encrypting the database password in hibernate.cfg.xml This is my property file. <!-- Database connection settings --> <property name="connection.driver_class">com.m...
Mycobacterium asked 5/9, 2013 at 12:37

6

Solved

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 ...
Demello asked 2/7, 2009 at 15:39

2

Solved

I have following code - import org.jasypt.util.text.BasicTextEncryptor; public static void main(String[] args) { BasicTextEncryptor textEncryptor = new BasicTextEncryptor(); textEncryptor.setP...
Scald asked 8/8, 2013 at 4:46

© 2022 - 2025 — McMap. All rights reserved.