use of org.wildfly.security.password.spec.ClearPasswordSpec in project fuse-karaf by jboss-fuse.
the class MaskedPasswordHelper method createCredentialSource.
@Override
public CredentialSource createCredentialSource(final Map<String, String> configuration) throws GeneralSecurityException, IOException {
final String algorithmParamsBase64 = option(configuration, CREDENTIAL_STORE_PROTECTION_PARAMS, "");
final Decoder decoder = Base64.getDecoder();
final byte[] encodedAlgorithmParams = decoder.decode(algorithmParamsBase64);
final String algorithm = option(configuration, CREDENTIAL_STORE_PROTECTION_ALGORITHM, DEFAULT_ALGORITHM);
final Provider provider = ProviderHelper.provider(option(configuration, CREDENTIAL_STORE_PROTECTION_PROVIDER, ProviderHelper.WILDFLY_PROVIDER));
final AlgorithmParameters algorithmParameters = AlgorithmParameters.getInstance(algorithm, provider);
algorithmParameters.init(encodedAlgorithmParams);
final MaskedPasswordAlgorithmSpec maskedPasswordAlgorithmSpec = algorithmParameters.getParameterSpec(MaskedPasswordAlgorithmSpec.class);
final char[] initialKeyMaterial = maskedPasswordAlgorithmSpec.getInitialKeyMaterial();
final int iterationCount = maskedPasswordAlgorithmSpec.getIterationCount();
final byte[] salt = maskedPasswordAlgorithmSpec.getSalt();
final String maskedPasswordBase64 = option(configuration, CREDENTIAL_STORE_PROTECTION, "");
final byte[] maskedPasswordBytes = decoder.decode(maskedPasswordBase64);
final MaskedPasswordSpec maskedPasswordSpec = new MaskedPasswordSpec(initialKeyMaterial, iterationCount, salt, maskedPasswordBytes);
final PasswordFactory passwordFactory = PasswordFactory.getInstance(algorithm, provider);
final Password maskedPassword = passwordFactory.generatePassword(maskedPasswordSpec);
final PasswordFactory clearPasswordFactory = PasswordFactory.getInstance(ClearPassword.ALGORITHM_CLEAR, provider);
final ClearPasswordSpec clearPasswordSpec = passwordFactory.getKeySpec(maskedPassword, ClearPasswordSpec.class);
final Password password = clearPasswordFactory.generatePassword(clearPasswordSpec);
final PasswordCredential passwordCredential = new PasswordCredential(password);
return IdentityCredentials.NONE.withCredential(passwordCredential);
}
use of org.wildfly.security.password.spec.ClearPasswordSpec in project fuse-karaf by jboss-fuse.
the class CredentialStoreHelperTest method accessCredentialStore.
@Test
public void accessCredentialStore() throws Exception {
Security.addProvider(new WildFlyElytronProvider());
// KeyStoreCredentialStore is default algorithm when using
// org.jboss.fuse.credential.store.karaf.util.CredentialStoreHelper.credentialStoreFromEnvironment()
// it's a credential store which is backed by a key store
CredentialStore cs1 = CredentialStore.getInstance("KeyStoreCredentialStore");
// Credential store implementation which uses the legacy "vault" format
CredentialStore cs2 = CredentialStore.getInstance("VaultCredentialStore");
// map-backed credential store implementation
CredentialStore cs3 = CredentialStore.getInstance("MapCredentialStore");
LOG.info("Credential Store 1: {}, aliases: {}", cs1, cs1.getAliases());
LOG.info("Credential Store 2: {}, aliases: {}", cs2, /*cs2.getAliases()*/
null);
LOG.info("Credential Store 3: {}, aliases: {}", cs3, cs3.getAliases());
// KeyStoreCredentialStore uses 3 parameters/attributes
// - location
// - modifiable
// - keyStoreType
// CHECKSTYLE:OFF
// from $JAVA_HOME/jre/lib/security/java.security, keystore.type
LOG.info("Default KeyStore type: {}", KeyStore.getDefaultType());
LOG.info("KeyStore providers / algorithms:");
for (Provider p : Providers.getProviderList().providers()) {
for (Provider.Service s : p.getServices()) {
if ("KeyStore".equals(s.getType())) {
LOG.info(" - {} / {}", s.getProvider().getName(), s.getAlgorithm());
}
}
}
LOG.info("PasswordFactory providers / algorithms:");
for (Provider p : Providers.getProviderList().providers()) {
for (Provider.Service s : p.getServices()) {
if ("PasswordFactory".equals(s.getType())) {
LOG.info(" - {} / {}", s.getProvider().getName(), s.getAlgorithm());
}
}
}
LOG.info("SecretKeyFactory providers / algorithms:");
for (Provider p : Providers.getProviderList().providers()) {
for (Provider.Service s : p.getServices()) {
if ("SecretKeyFactory".equals(s.getType())) {
LOG.info(" - {} / {}", s.getProvider().getName(), s.getAlgorithm());
}
}
}
LOG.info("Cipher providers / algorithms:");
for (Provider p : Providers.getProviderList().providers()) {
for (Provider.Service s : p.getServices()) {
if ("Cipher".equals(s.getType())) {
LOG.info(" - {} / {}", s.getProvider().getName(), s.getAlgorithm());
}
}
}
// CHECKSTYLE:ON
Password pwd1 = PasswordFactory.getInstance("clear").generatePassword(new ClearPasswordSpec("secret1".toCharArray()));
Password pwd2 = PasswordFactory.getInstance("clear").generatePassword(new ClearPasswordSpec("secret2".toCharArray()));
CredentialSource cs = IdentityCredentials.NONE.withCredential(new PasswordCredential(pwd1));
CredentialStore.ProtectionParameter pp = new CredentialStore.CredentialSourceProtectionParameter(cs);
Map<String, String> attrs = new HashMap<>();
attrs.put("keyStoreType", "PKCS12");
attrs.put("location", String.format("target/credentials-%12d.store", new Date().getTime()));
cs1.initialize(attrs, pp);
cs1.store("alias1", new PasswordCredential(pwd2));
cs1.flush();
LOG.info("Credential Store 1: {}, aliases: {}", cs1, cs1.getAliases());
PasswordCredential pwd = cs1.retrieve("alias1", PasswordCredential.class);
LOG.info("Retrieved password: {}", new String(((ClearPassword) pwd.getPassword()).getPassword()));
}
use of org.wildfly.security.password.spec.ClearPasswordSpec in project fuse-karaf by jboss-fuse.
the class ProtectionTypeTest method shouldCreateMaskedPasswordCredentialSourceFromConfiguration.
@Test
public void shouldCreateMaskedPasswordCredentialSourceFromConfiguration() throws IOException, GeneralSecurityException {
final Map<String, String> configuration = new HashMap<>();
configuration.put("CREDENTIAL_STORE_PROTECTION_ALGORITHM", MaskedPassword.ALGORITHM_MASKED_MD5_DES);
configuration.put("CREDENTIAL_STORE_PROTECTION_PARAMS", "MDkEKXNvbWVhcmJpdHJhcnljcmF6eXN0cmluZ3RoYXRkb2Vzbm90bWF0dGVyAgID6AQIHmrp8uDnGLE=");
configuration.put("CREDENTIAL_STORE_PROTECTION", "mC/60tWnla4bmFn2e5Z8U3CZnjsG9Pvc");
final CredentialSource credentialSource = ProtectionType.masked.createCredentialSource(configuration);
assertThat(credentialSource).isNotNull();
final PasswordCredential credential = credentialSource.getCredential(PasswordCredential.class);
final Password password = credential.getPassword();
final PasswordFactory clearPasswordFactory = PasswordFactory.getInstance(ClearPassword.ALGORITHM_CLEAR, new WildFlyElytronProvider());
final ClearPasswordSpec clearPasswordSpec = clearPasswordFactory.getKeySpec(password, ClearPasswordSpec.class);
assertThat(new String(clearPasswordSpec.getEncodedPassword())).isEqualTo("my deep dark secret");
}
use of org.wildfly.security.password.spec.ClearPasswordSpec in project fuse-karaf by jboss-fuse.
the class ActivatorTest method initializeCredentialStore.
@Before
public void initializeCredentialStore() throws Exception {
activator.start(null);
final WildFlyElytronProvider elytron = new WildFlyElytronProvider();
Security.addProvider(elytron);
final PasswordFactory passwordFactory = PasswordFactory.getInstance(ClearPassword.ALGORITHM_CLEAR, elytron);
final Password password = passwordFactory.generatePassword(new ClearPasswordSpec("it was the best of times it was the worst of times".toCharArray()));
final Credential credential = new PasswordCredential(password);
final CredentialSource credentialSource = IdentityCredentials.NONE.withCredential(credential);
credentialStore = CredentialStore.getInstance(KeyStoreCredentialStore.KEY_STORE_CREDENTIAL_STORE, elytron);
final String storePath = new File(tmp.getRoot(), "credential.store").getAbsolutePath();
final Map<String, String> parameters = new HashMap<>();
parameters.put("location", storePath);
parameters.put("keyStoreType", "JCEKS");
credentialStore.initialize(parameters, new CredentialStore.CredentialSourceProtectionParameter(credentialSource));
final Password secret = passwordFactory.generatePassword(new ClearPasswordSpec("this is a password".toCharArray()));
final Credential value = new PasswordCredential(secret);
credentialStore.store("alias", value);
credentialStore.flush();
}
use of org.wildfly.security.password.spec.ClearPasswordSpec in project fuse-karaf by jboss-fuse.
the class StoreInCredentialStore method execute.
@Override
public Object execute() throws Exception {
final CredentialStore credentialStore = CredentialStoreHelper.credentialStoreFromEnvironment();
final PasswordFactory passwordFactory = PasswordFactory.getInstance("clear", ProviderHelper.provider(ProviderHelper.WILDFLY_PROVIDER));
final Password password = passwordFactory.generatePassword(new ClearPasswordSpec(secret.toCharArray()));
credentialStore.store(alias, new PasswordCredential(password));
credentialStore.flush();
System.out.println("Value stored in the credential store to reference it use: " + CredentialStoreHelper.referenceForAlias(alias));
return null;
}
Aggregations