-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. certutilpath.patch patched file changed. Removed bc/ is not used anymore due to the autofirma-setup removal. 2. etc_config.patch patched file changed. A class name and also the line endings mutated to windows CRLF *sigh*. 3. Autofirma.jar has been renamed to autofirma.jar (*double sigh*.) 4. Autofirma now expects the cer file to be named Autofirma_ROOT.cer
- Loading branch information
1 parent
db0cc74
commit e3f31a3
Showing
6 changed files
with
15 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
diff --git a/afirma-simple/src/main/java/es/gob/afirma/standalone/protocol/SecureSocketUtils.java b/afirma-simple/src/main/java/es/gob/afirma/standalone/protocol/SecureSocketUtils.java | ||
index 4485c27aa..6e96cb830 100644 | ||
index e925ac3ff..fd5838557 100644 | ||
--- a/afirma-simple/src/main/java/es/gob/afirma/standalone/protocol/SecureSocketUtils.java | ||
+++ b/afirma-simple/src/main/java/es/gob/afirma/standalone/protocol/SecureSocketUtils.java | ||
@@ -65,7 +65,8 @@ class SecureSocketUtils { | ||
* @return Almacén de claves o {@code null} si no se encontró. */ | ||
private static File getKeyStoreFile() { | ||
|
||
- File appDir = AutoFirmaUtil.getApplicationDirectory(); | ||
+ // Check first in /etc for the KeyStoreFile | ||
+ File appDir = new File("/etc/Autofirma"); | ||
|
||
if (appDir != null && new File(appDir, KEYSTORE_NAME).exists() | ||
&& new File(appDir, CA_ROOT_NAME).exists()) { | ||
* @return Almacén de claves o {@code null} si no se encontró. */ | ||
private static File getKeyStoreFile() { | ||
|
||
- File appDir = DesktopUtil.getApplicationDirectory(); | ||
+ // Check first in /etc for the KeyStoreFile | ||
+ File appDir = new File("/etc/Autofirma"); | ||
|
||
if (appDir != null && new File(appDir, KEYSTORE_NAME).exists() | ||
&& new File(appDir, CA_ROOT_NAME).exists()) { |