修复JWTSignerUtil中ES256签名不符合规范问题

This commit is contained in:
Looly
2023-07-18 02:44:58 +08:00
parent d606236923
commit aab5ba5098
6 changed files with 270 additions and 4 deletions

View File

@@ -41,5 +41,17 @@
<version>${bouncycastle.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.11.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-gson</artifactId>
<version>0.11.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>