]
Yeray Borges moved WFCORE-2480 to ELY-1104:
-------------------------------------------
Project: WildFly Elytron (was: WildFly Core)
Key: ELY-1104 (was: WFCORE-2480)
Component/s: Credential Store
(was: Security)
CS tool, provide way to create empty credential store
-----------------------------------------------------
Key: ELY-1104
URL:
https://issues.jboss.org/browse/ELY-1104
Project: WildFly Elytron
Issue Type: Bug
Components: Credential Store
Reporter: Martin Choma
Assignee: Yeray Borges
Labels: credential-store, wildfly-elytron-tool
There is no way to create empty credential store. Curently credential store can be
created only with adding alias as well.
{code}
java -jar wildfly-elytron-tool.jar credential-store --add myalias --secret
supersecretpassword --location="test.store" --uri
"cr-store://test?modifiable=true;create=true;keyStoreType=JCEKS" --password
mycspassword --salt 12345678 --iteration 230 --summary
{code}
I would expect something like
{code}
java -jar wildfly-elytron-tool.jar credential-store --create
--location="test.store" --uri
"cr-store://test?modifiable=true;create=true;keyStoreType=JCEKS" --password
mycspassword
{code}