← 返回首页
Shows that there is a bug with simple renames by machadoit · Pull Request #184 · java-diff-utils/java-diff-utils · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .diff  (1) All 1 file type selected Viewed files
Conversations
Failed to load comments. Retry
Loading
Jump to
Jump to file
Failed to load files. Retry
Loading
Diff view
Unified
Split
Hide whitespace
Apply and reload
Show whitespace
Diff view
Unified
Split
Hide whitespace
Apply and reload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -761,29 +761,9 @@ index 0000000000..9757827e0f
+ }
+}
diff --git a/pgjdbc/src/main/java/org/postgresql/ssl/jdbc4/LazyKeyManager.java b/pgjdbc/src/main/java/org/postgresql/ssl/LazyKeyManager.java
similarity index 99%
similarity index 100%
rename from pgjdbc/src/main/java/org/postgresql/ssl/jdbc4/LazyKeyManager.java
rename to pgjdbc/src/main/java/org/postgresql/ssl/LazyKeyManager.java
index 4585f1a968..be4db4153b 100644
--- a/pgjdbc/src/main/java/org/postgresql/ssl/jdbc4/LazyKeyManager.java
+++ b/pgjdbc/src/main/java/org/postgresql/ssl/LazyKeyManager.java
@@ -3,7 +3,7 @@
* See the LICENSE file in the project root for more information.
*/

-package org.postgresql.ssl.jdbc4;
+package org.postgresql.ssl;

import org.postgresql.util.GT;
import org.postgresql.util.PSQLException;
@@ -222,6 +222,7 @@ public PrivateKey getPrivateKey(String alias) {
}
try {
PBEKeySpec pbeKeySpec = new PBEKeySpec(pwdcb.getPassword());
+ pwdcb.clearPassword();
// Now create the Key from the PBEKeySpec
SecretKeyFactory skFac = SecretKeyFactory.getInstance(ePKInfo.getAlgName());
Key pbeKey = skFac.generateSecret(pbeKeySpec);
diff --git a/pgjdbc/src/main/java/org/postgresql/ssl/LibPQFactory.java b/pgjdbc/src/main/java/org/postgresql/ssl/LibPQFactory.java
new file mode 100644
index 0000000000..c0c34bd274
Expand Down
Toggle all file notes Toggle all file annotations

Footer

© 2026 GitHub, Inc.