Skip to content

Commit

Permalink
refactor: 키매니저 교체
Browse files Browse the repository at this point in the history
  • Loading branch information
newjaehun committed May 19, 2024
1 parent a45ec06 commit 98aa434
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/store/mybooks/front/config/KeyConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public KeyConfig(KeyProperties keyProperties) {
public String keyStore(String keyId) {
try {
KeyStore clientStore = KeyStore.getInstance("PKCS12");
InputStream result = new ClassPathResource("my-books.p12").getInputStream();
InputStream result = new ClassPathResource("my-book.p12").getInputStream();
clientStore.load(result, keyProperties.getPassword().toCharArray());

SSLContext sslContext = SSLContextBuilder.create()
Expand Down
Binary file added src/main/resources/my-book.p12
Binary file not shown.
Binary file removed src/main/resources/my-books.p12
Binary file not shown.

0 comments on commit 98aa434

Please sign in to comment.