We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d407365 commit 1bfb2ebCopy full SHA for 1bfb2eb
1 file changed
pg/src/main/java/org/bouncycastle/bcpg/SignaturePacket.java
@@ -162,6 +162,14 @@ else if (p instanceof SignatureCreationTime)
162
signature[0] = ecR;
163
signature[1] = ecS;
164
break;
165
+ case EDDSA:
166
+ MPInteger edR = new MPInteger(in);
167
+ MPInteger edS = new MPInteger(in);
168
+
169
+ signature = new MPInteger[2];
170
+ signature[0] = edR;
171
+ signature[1] = edS;
172
+ break;
173
default:
174
if (keyAlgorithm >= PublicKeyAlgorithmTags.EXPERIMENTAL_1 && keyAlgorithm <= PublicKeyAlgorithmTags.EXPERIMENTAL_11)
175
{
0 commit comments