Skip to content

Commit a84dffb

Browse files
committed
minor changes to messages
1 parent d884486 commit a84dffb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

prov/src/main/java/org/bouncycastle/jcajce/CompositePublicKey.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public CompositePublicKey(ASN1ObjectIdentifier algorithmIdentifier, PublicKey...
5252

5353
if (keys == null || keys.length == 0)
5454
{
55-
throw new IllegalArgumentException("At least one public key must be provided for the composite public key.");
55+
throw new IllegalArgumentException("at least one public key must be provided for the composite public key");
5656
}
5757

5858
List<PublicKey> keyList = new ArrayList<>(keys.length);

prov/src/main/jdk1.9/module-info.java

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
exports org.bouncycastle.jcajce;
6464
exports org.bouncycastle.jcajce.io;
6565
exports org.bouncycastle.jcajce.provider.asymmetric;
66+
exports org.bouncycastle.jcajce.provider.asymmetric.compositesignatures;
6667
exports org.bouncycastle.jcajce.provider.asymmetric.dh;
6768
exports org.bouncycastle.jcajce.provider.asymmetric.dsa;
6869
exports org.bouncycastle.jcajce.provider.asymmetric.dstu;

0 commit comments

Comments
 (0)