org.jasypt.util.text.TextEncryptor Java Examples
The following examples show how to use
org.jasypt.util.text.TextEncryptor.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CLIPasswordEncryptor.java From incubator-gobblin with Apache License 2.0 | 6 votes |
public static void main(String[] args) throws ParseException { CommandLine cl = parseArgs(args); if (shouldPrintUsageAndExit(cl)) { printUsage(); return; } String masterPassword = getMasterPassword(cl); TextEncryptor encryptor = getEncryptor(cl, masterPassword); if (cl.hasOption(ENCRYPTED_PWD_OPTION)) { Matcher matcher = ENCRYPTED_PATTERN.matcher(cl.getOptionValue(ENCRYPTED_PWD_OPTION)); if (matcher.find()) { String encrypted = matcher.group(1); System.out.println(encryptor.decrypt(encrypted)); } else { throw new RuntimeException("Input encrypted password does not match pattern \"ENC(...)\""); } } else if (cl.hasOption(PLAIN_PWD_OPTION)){ System.out.println("ENC(" + encryptor.encrypt(cl.getOptionValue(PLAIN_PWD_OPTION)) + ")"); } else { printUsage(); throw new RuntimeException(String.format("Must provide -%s or -%s option.", PLAIN_PWD_OPTION, ENCRYPTED_PWD_OPTION)); } }
Example #2
Source File: FindConfigFileService.java From find with MIT License | 6 votes |
protected FindConfigFileService(final FilterProvider filterProvider, final TextEncryptor textEncryptor, final JsonSerializer<FieldPath> fieldPathSerializer, final JsonDeserializer<FieldPath> fieldPathDeserializer) { final ObjectMapper objectMapper = new Jackson2ObjectMapperBuilder() .featuresToEnable(SerializationFeature.INDENT_OUTPUT) .mixIns(customMixins()) .serializersByType(ImmutableMap.of(FieldPath.class, fieldPathSerializer)) .deserializersByType(ImmutableMap.of(FieldPath.class, fieldPathDeserializer)) .createXmlMapper(false) .build(); setConfigFileLocation(CONFIG_FILE_LOCATION); setDeprecatedConfigFileLocations(Collections.singletonList(CONFIG_FILE_LOCATION_HP)); setConfigFileName(CONFIG_FILE_NAME); setDefaultConfigFile(getDefaultConfigFile()); setMapper(objectMapper); setTextEncryptor(textEncryptor); setFilterProvider(filterProvider); }
Example #3
Source File: EncryptableProperties.java From jasypt with Apache License 2.0 | 6 votes |
private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); final EncryptablePropertiesEncryptorRegistry registry = EncryptablePropertiesEncryptorRegistry.getInstance(); final StringEncryptor registeredStringEncryptor = registry.getStringEncryptor(this); if (registeredStringEncryptor != null) { this.stringEncryptor = registeredStringEncryptor; return; } final TextEncryptor registeredTextEncryptor = registry.getTextEncryptor(this); if (registeredTextEncryptor != null) { this.textEncryptor = registeredTextEncryptor; } }
Example #4
Source File: PasswordManager.java From incubator-gobblin with Apache License 2.0 | 5 votes |
/** * Decrypt an encrypted password. A master password file must have been provided in the constructor. * @param encrypted An encrypted password. * @return The decrypted password. */ public String decryptPassword(String encrypted) { Preconditions.checkArgument(this.encryptors.size() > 0, "A master password needs to be provided for decrypting passwords."); for (TextEncryptor encryptor : encryptors) { try { return encryptor.decrypt(encrypted); } catch (Exception e) { LOG.warn("Failed attempt to decrypt secret {}", encrypted, e); } } LOG.error("All {} decrypt attempt(s) failed.", encryptors.size()); throw new RuntimeException("Failed to decrypt password ENC(" + encrypted + ")"); }
Example #5
Source File: EncryptablePropertiesPropertySource.java From jasypt with Apache License 2.0 | 5 votes |
private static Properties processProperties(final Properties props, final TextEncryptor encryptor) { if (props == null) { return null; } if (props instanceof EncryptableProperties) { throw new IllegalArgumentException( "Properties object already is an " + EncryptableProperties.class.getName() + " object. No encryptor should be specified."); } final EncryptableProperties encryptableProperties = new EncryptableProperties(encryptor); encryptableProperties.putAll(props); return encryptableProperties; }
Example #6
Source File: HodFindConfigFileService.java From find with MIT License | 5 votes |
@Autowired public HodFindConfigFileService( final FilterProvider filterProvider, final TextEncryptor textEncryptor, final JsonSerializer<FieldPath> fieldPathSerializer, final JsonDeserializer<FieldPath> fieldPathDeserializer) { super(filterProvider, textEncryptor, fieldPathSerializer, fieldPathDeserializer); }
Example #7
Source File: PropertyValueEncryptionUtils.java From jasypt with Apache License 2.0 | 5 votes |
public static String encrypt( final String decodedValue, final TextEncryptor encryptor) { return ENCRYPTED_VALUE_PREFIX + encryptor.encrypt(decodedValue) + ENCRYPTED_VALUE_SUFFIX; }
Example #8
Source File: CredentialsConfig.java From find with MIT License | 5 votes |
@Override public CredentialsConfig withDecryptedPasswords(final TextEncryptor encryptor) { return toBuilder() // allow removing password from config by setting to empty string .password(encryptor.decrypt((password != null && password.isEmpty()) ? null : password)) .build(); }
Example #9
Source File: EncryptablePropertiesPropertySource.java From jasypt with Apache License 2.0 | 5 votes |
private static Properties processProperties(final Properties props, final TextEncryptor encryptor) { if (props == null) { return null; } if (props instanceof EncryptableProperties) { throw new IllegalArgumentException( "Properties object already is an " + EncryptableProperties.class.getName() + " object. No encryptor should be specified."); } final EncryptableProperties encryptableProperties = new EncryptableProperties(encryptor); encryptableProperties.putAll(props); return encryptableProperties; }
Example #10
Source File: IdolFindConfigFileService.java From find with MIT License | 5 votes |
@Autowired public IdolFindConfigFileService( final FilterProvider filterProvider, final TextEncryptor textEncryptor, final JsonSerializer<FieldPath> fieldPathSerializer, final JsonDeserializer<FieldPath> fieldPathDeserializer, final IdolConfigUpdateHandler idolConfigUpdateHandler, final IdolFieldPathNormaliserImpl idolFieldPathNormaliser ) { super(filterProvider, textEncryptor, fieldPathSerializer, fieldPathDeserializer); this.idolConfigUpdateHandler = idolConfigUpdateHandler; this.idolFieldPathNormaliser = idolFieldPathNormaliser; }
Example #11
Source File: ConfigFileConfiguration.java From find with MIT License | 5 votes |
@Bean public TextEncryptor textEncryptor() { final FactoryBean<String> passwordFactory = new TextEncryptorPasswordFactory(); final BasicTextEncryptor basicTextEncryptor = new BasicTextEncryptor(); try { basicTextEncryptor.setPassword(passwordFactory.getObject()); } catch(final Exception e) { throw new BeanInitializationException("Failed to initialize TextEncryptor for some reason", e); } return basicTextEncryptor; }
Example #12
Source File: CredentialsConfigTest.java From find with MIT License | 5 votes |
@Before public void setUp() { encryptor = Mockito.mock(TextEncryptor.class); Mockito.when(encryptor.encrypt(Mockito.any())) .then(invocation -> "encrypted:" + invocation.getArgumentAt(0, String.class)); Mockito.when(encryptor.decrypt(Mockito.any())) .then(invocation -> invocation.getArgumentAt(0, String.class).substring(10)); }
Example #13
Source File: IdolFindConfig.java From find with MIT License | 4 votes |
@Override public IdolFindConfig withDecryptedPasswords(final TextEncryptor encryptor) { return toBuilder().controlPoint( controlPoint == null ? null : controlPoint.withDecryptedPasswords(encryptor) ).build(); }
Example #14
Source File: EncryptablePropertiesPropertySource.java From jasypt with Apache License 2.0 | 4 votes |
public EncryptablePropertiesPropertySource(final String name, final Properties props, final TextEncryptor encryptor) { super(name, processProperties(props, encryptor)); }
Example #15
Source File: PasswordManager.java From incubator-gobblin with Apache License 2.0 | 4 votes |
private List<TextEncryptor> getEncryptors(CachedInstanceKey cacheKey) { List<TextEncryptor> encryptors = new ArrayList<>(); int numOfEncryptionKeys = cacheKey.numOfEncryptionKeys; String suffix = ""; int i = 1; if (cacheKey.masterPasswordFile == null || numOfEncryptionKeys < 1) { return encryptors; } Exception exception = null; do { Path currentMasterPasswordFile = new Path(cacheKey.masterPasswordFile + suffix); try (Closer closer = Closer.create()) { if (!fs.exists(currentMasterPasswordFile) || fs.getFileStatus(currentMasterPasswordFile).isDirectory()) { continue; } InputStream in = closer.register(fs.open(currentMasterPasswordFile)); String masterPassword = new LineReader(new InputStreamReader(in, Charsets.UTF_8)).readLine(); TextEncryptor encryptor = useStrongEncryptor ? new StrongTextEncryptor() : new BasicTextEncryptor(); // setPassword() needs to be called via reflection since the TextEncryptor interface doesn't have this method. encryptor.getClass().getMethod("setPassword", String.class).invoke(encryptor, masterPassword); encryptors.add(encryptor); suffix = "." + String.valueOf(i); } catch (FileNotFoundException fnf) { // It is ok for password files not being present LOG.warn("Master password file " + currentMasterPasswordFile + " not found."); } catch (IOException ioe) { exception = ioe; LOG.warn("Master password could not be read from file " + currentMasterPasswordFile); } catch (Exception e) { LOG.warn("Encryptor could not be instantiated."); } } while (i++ < numOfEncryptionKeys); // Throw exception if could not read any existing password file if (encryptors.size() < 1 && exception != null) { throw new RuntimeException("Master Password could not be read from any master password file.", exception); } return encryptors; }
Example #16
Source File: HodFindConfig.java From find with MIT License | 4 votes |
@Override public HodFindConfig withEncryptedPasswords(final TextEncryptor encryptor) { return this; }
Example #17
Source File: HodFindConfig.java From find with MIT License | 4 votes |
@Override public HodFindConfig withDecryptedPasswords(final TextEncryptor encryptor) { return this; }
Example #18
Source File: EncryptablePropertiesEncryptorRegistry.java From jasypt with Apache License 2.0 | 4 votes |
void setTextEncryptor(final EncryptableProperties prop, final TextEncryptor encryptor) { this.textEncryptors.put(prop.getIdent(), encryptor); }
Example #19
Source File: EncryptablePropertiesEncryptorRegistry.java From jasypt with Apache License 2.0 | 4 votes |
TextEncryptor getTextEncryptor(final EncryptableProperties prop) { return (TextEncryptor) this.textEncryptors.get(prop.getIdent()); }
Example #20
Source File: PropertyValueEncryptionUtils.java From jasypt with Apache License 2.0 | 4 votes |
public static String decrypt( final String encodedValue, final TextEncryptor encryptor) { return encryptor.decrypt(getInnerEncryptedValue(encodedValue.trim())); }
Example #21
Source File: CredentialsConfig.java From find with MIT License | 4 votes |
@Override public CredentialsConfig withEncryptedPasswords(final TextEncryptor encryptor) { return toBuilder().password(encryptor.encrypt(password)).build(); }
Example #22
Source File: ControlPointConfig.java From find with MIT License | 4 votes |
@Override public ControlPointConfig withEncryptedPasswords(final TextEncryptor encryptor) { return toBuilder() .server(server == null ? null : server.withEncryptedPasswords(encryptor)) .build(); }
Example #23
Source File: ControlPointConfig.java From find with MIT License | 4 votes |
@Override public ControlPointConfig withDecryptedPasswords(final TextEncryptor encryptor) { return toBuilder() .server(server == null ? null : server.withDecryptedPasswords(encryptor)) .build(); }
Example #24
Source File: ControlPointServerConfig.java From find with MIT License | 4 votes |
@Override public ControlPointServerConfig withDecryptedPasswords(final TextEncryptor encryptor) { return toBuilder() .credentials(credentials == null ? null : credentials.withDecryptedPasswords(encryptor)) .build(); }
Example #25
Source File: EncryptablePropertiesPropertySource.java From jasypt with Apache License 2.0 | 4 votes |
public EncryptablePropertiesPropertySource(final String name, final Properties props, final TextEncryptor encryptor) { super(name, processProperties(props, encryptor)); }
Example #26
Source File: IdolFindConfig.java From find with MIT License | 4 votes |
@Override public IdolFindConfig withEncryptedPasswords(final TextEncryptor encryptor) { return toBuilder().controlPoint( controlPoint == null ? null : controlPoint.withEncryptedPasswords(encryptor) ).build(); }
Example #27
Source File: ControlPointServerConfig.java From find with MIT License | 4 votes |
@Override public ControlPointServerConfig withEncryptedPasswords(final TextEncryptor encryptor) { return toBuilder() .credentials(credentials == null ? null : credentials.withEncryptedPasswords(encryptor)) .build(); }
Example #28
Source File: EncryptablePropertyPlaceholderConfigurer.java From jasypt with Apache License 2.0 | 3 votes |
/** * <p> * Creates an <tt>EncryptablePropertyPlaceholderConfigurer</tt> instance which will use the * passed {@link TextEncryptor} object to decrypt encrypted values. * </p> * * @param textEncryptor * the {@link TextEncryptor} to be used do decrypt values. It can * not be null. */ public EncryptablePropertyPlaceholderConfigurer(final TextEncryptor textEncryptor) { super(); CommonUtils.validateNotNull(textEncryptor, "Encryptor cannot be null"); this.stringEncryptor = null; this.textEncryptor = textEncryptor; }
Example #29
Source File: EncryptablePropertySourcesPlaceholderConfigurer.java From jasypt with Apache License 2.0 | 3 votes |
/** * <p> * Creates an <tt>EncryptablePropertyPlaceholderConfigurer</tt> instance which will use the * passed {@link TextEncryptor} object to decrypt encrypted values. * </p> * * @param textEncryptor * the {@link TextEncryptor} to be used do decrypt values. It can * not be null. */ public EncryptablePropertySourcesPlaceholderConfigurer(final TextEncryptor textEncryptor) { super(); CommonUtils.validateNotNull(textEncryptor, "Encryptor cannot be null"); this.stringEncryptor = null; this.textEncryptor = textEncryptor; }
Example #30
Source File: EncryptablePropertyPlaceholderConfigurer.java From jasypt with Apache License 2.0 | 3 votes |
/** * <p> * Creates an <tt>EncryptablePropertyPlaceholderConfigurer</tt> instance which will use the * passed {@link TextEncryptor} object to decrypt encrypted values. * </p> * * @param textEncryptor * the {@link TextEncryptor} to be used do decrypt values. It can * not be null. */ public EncryptablePropertyPlaceholderConfigurer(final TextEncryptor textEncryptor) { super(); CommonUtils.validateNotNull(textEncryptor, "Encryptor cannot be null"); this.stringEncryptor = null; this.textEncryptor = textEncryptor; }