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
/* | |
* Licensed under CC0 | |
* http://creativecommons.org/publicdomain/zero/1.0/ | |
*/ | |
package se.kodafritt.snippets.antipatterns; | |
import static org.hamcrest.CoreMatchers.isA; | |
import org.junit.BeforeClass; | |
import org.junit.Rule; |
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
diff --git a/src/share/classes/sun/security/ec/NamedCurve.java b/src/share/classes/sun/security/ec/NamedCurve.java | |
--- a/src/share/classes/sun/security/ec/NamedCurve.java | |
+++ b/src/share/classes/sun/security/ec/NamedCurve.java | |
@@ -658,6 +658,133 @@ | |
0xFF70); | |
*/ | |
+ /* Brainpool curves (RFC 5639) */ | |
+ add("brainpoolP160r1", "1.3.36.3.3.2.8.1.1.1", P, | |
+ "E95E4A5F737059DC60DFC7AD95B3D8139515620F", |
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
diff --git a/client/Makefile b/client/Makefile | |
index 7cd931c..708ab8b 100644 | |
--- a/client/Makefile | |
+++ b/client/Makefile | |
@@ -63,11 +63,11 @@ sign: $(OBJECTS) | |
clean: | |
rm -f $(OBJECTS) sign | |
-install: sign gtk/sign.xml | |
+install: sign gtk/sign.ui |