We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d35bce commit c9c45b9Copy full SHA for c9c45b9
proxybase/src/main/java/com/dajudge/proxybase/certs/FileSystemKeyStoreLoader.java
@@ -60,7 +60,7 @@ private char[] getEffectiveKeyStorePassword() throws IOException {
60
61
private char[] getEffectivePassword(final String path, final char[] password) throws IOException {
62
if (path != null) {
63
- new String(filesystem.readFile(path), StandardCharsets.UTF_8);
+ return new String(filesystem.readFile(path), StandardCharsets.UTF_8).toCharArray();
64
}
65
return password;
66
0 commit comments