Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] authored and [email protected] committed Jan 22, 2019
1 parent 89b23a7 commit 8e12162
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Mkstore command is used to create a new wallet and add credentials:
`mkstore -wrl mywallet -create`

- Add database credentials to the wallet:
`mkstore -wrl mywallet -createCredential oracleserver:1521 dbuser myv3rys3cre3tp@ss`
`mkstore -wrl mywallet -createCredential oracleserver:1521 dbuser myv3rys3cr3tp@ss`

- List stored credentials:
`mkstore -wrl mywallet -list`
Expand All @@ -25,7 +25,7 @@ Note that for each calls above you must provide the wallet password:

```
Enter wallet password:
oracle.security.client.password1 = myv3rys3cre3tp@ss
oracle.security.client.password1 = myv3rys3cr3tp@ss
```

## Issue
Expand Down Expand Up @@ -72,7 +72,7 @@ Example test case run:
```
* Clear wallet if exists
* Create a new wallet with one credential entry
java -classpath lib/* oracle.security.pki.OracleSecretStoreTextUI -wrl mywallet -create -createCredential oracleserver:1521 dbuser myv3rys3cre3tp@ss
java -classpath lib/* oracle.security.pki.OracleSecretStoreTextUI -wrl mywallet -create -createCredential oracleserver:1521 dbuser myv3rys3cr3tp@ss
Oracle Secret Store Tool : Version 12.2.0.1.0
Copyright (c) 2004, 2016, Oracle and/or its affiliates. All rights reserved.
Expand All @@ -84,11 +84,11 @@ java -classpath lib/* oracle.security.pki.OracleSecretStoreTextUI -wrl mywallet
Oracle Secret Store Tool : Version 12.2.0.1.0
Copyright (c) 2004, 2016, Oracle and/or its affiliates. All rights reserved.
oracle.security.client.password1 = myv3rys3cre3tp@ss
oracle.security.client.password1 = myv3rys3cr3tp@ss
* Recover wallet without original wallet password and display entries with clear text passwords
java -classpath lib/*:oracle-wallet-recover-1.0.jar RecoverWallet mywallet recoveredwallet N3wP@ssw0rd
oracleserver:1521 dbuser myv3rys3cre3tp@ss
oracleserver:1521 dbuser myv3rys3cr3tp@ss
```

## Build
Expand Down
2 changes: 1 addition & 1 deletion src/test/TestRecoverWallet.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void checkPermission(Permission perm) {
String walletName = "mywallet";
String dbInfo = "oracleserver:1521";
String dbUser = "dbuser";
String dbPassword = "myv3rys3cre3tp@ss";
String dbPassword = "myv3rys3cr3tp@ss";
String walletPassword = "walletP@ssw3rd";

String recoveredWalletName = "recoveredwallet";
Expand Down

0 comments on commit 8e12162

Please sign in to comment.