Skip to content

Commit

Permalink
Bump bouncycastle.version from 1.72 to 1.77
Browse files Browse the repository at this point in the history
Bumps `bouncycastle.version` from 1.72 to 1.77.

Updates `org.bouncycastle:bcpg-jdk18on` from 1.72 to 1.77
- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)
- [Commits](https://github.com/bcgit/bc-java/commits)

Updates `org.bouncycastle:bcprov-jdk18on` from 1.72 to 1.77
- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)
- [Commits](https://github.com/bcgit/bc-java/commits)

---
updated-dependencies:
- dependency-name: org.bouncycastle:bcpg-jdk18on
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.bouncycastle:bcprov-jdk18on
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and robot-simplify4u committed Mar 23, 2024
1 parent c2591f9 commit e1def0e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
</distributionManagement>

<properties>
<bouncycastle.version>1.72</bouncycastle.version>
<bouncycastle.version>1.77</bouncycastle.version>
<jackson.version>2.16.1</jackson.version>
<maven.version>3.5.0</maven.version>
<mockito.version>4.11.0</mockito.version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/sigOkKeysMapWithPluginDependencies/keysmap.list
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ org.apiguardian:apiguardian-api:1.0.0 = 0x58E79B6ABC762159DC0B1591164BD2247B9367
org.assertj:assertj-core:3.15.0 = 0xA778FDE933A96DDA827840D8E2B3D84202B812D9
org.assertj:assertj-core:3.9.0 = 0xA778FDE933A96DDA827840D8E2B3D84202B812D9
org.beanshell:bsh:1.3.0 = noSig
org.bouncycastle = 0x08F0AAB4D0C1A4BDDE340765B341DDB020FCB6AB
org.bouncycastle = 0x08F0AAB4D0C1A4BDDE340765B341DDB020FCB6AB, 0x7B121B76A7ED6CE6E60AD51784E913A8E3A748C0
org.checkerframework = 0x19BEAB2D799C020F17C69126B16698A4ADF4D638
org.codehaus.mojo:animal-sniffer-annotations:1.14 = 0x82F833963889D7ED06F1E4DC6525FD70CC303655
org.codehaus.mojo:animal-sniffer-annotations:1.17 = 0xF254B35617DC255D9344BCFA873A8E86B4372146
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/org/simplify4u/plugins/pgp/SignatureUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,14 @@ public String keyAlgorithmName(int keyAlgorithm) {
return "Diffie-Hellman";
case PublicKeyAlgorithmTags.EDDSA:
return "EdDSA";
case PublicKeyAlgorithmTags.X25519:
return "X25519";
case PublicKeyAlgorithmTags.X448:
return "X448";
case PublicKeyAlgorithmTags.Ed25519:
return "Ed25519";
case PublicKeyAlgorithmTags.Ed448:
return "Ed448";
case PublicKeyAlgorithmTags.EXPERIMENTAL_1:
case PublicKeyAlgorithmTags.EXPERIMENTAL_2:
case PublicKeyAlgorithmTags.EXPERIMENTAL_3:
Expand Down

0 comments on commit e1def0e

Please sign in to comment.