Skip to content

Commit

Permalink
$ 发布3.6.4 版本
Browse files Browse the repository at this point in the history
  • Loading branch information
fjn committed Jul 27, 2021
1 parent ba5aa54 commit a973804
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[javadoc](https://apidoc.gitee.com/fangjinuo/langx-java)
[教程](https://fangjinuo.gitee.io/docs/)

[![maven](https://img.shields.io/badge/maven-v3.6.3.green.svg)](https://search.maven.org/search?q=g:com.github.fangjinuo.langx%20AND%20v:3.6.3)
[![maven](https://img.shields.io/badge/maven-v3.6.4.green.svg)](https://search.maven.org/search?q=g:com.github.fangjinuo.langx%20AND%20v:3.6.4)

## [GitHub地址](https://github.com/fangjinuo/langx-java)
## [Gitee地址](https://gitee.com/fangjinuo/langx-java)
Expand Down
2 changes: 1 addition & 1 deletion langx-java-reflect-asm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.fangjinuo.langx</groupId>
<artifactId>langx</artifactId>
<version>3.6.3</version>
<version>3.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion langx-java-reflect-aspectj/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.fangjinuo.langx</groupId>
<artifactId>langx</artifactId>
<version>3.6.3</version>
<version>3.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion langx-java-security-gm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>langx</artifactId>
<groupId>com.github.fangjinuo.langx</groupId>
<version>3.6.3</version>
<version>3.6.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ protected void doInit() throws InitializationException {
Provider provider = Security.getProvider("BC");
if (provider == null) {
provider = new BouncyCastleProvider();
//Securitys.addProvider(provider);
Securitys.insertProvider(provider);
Securitys.addProvider(provider);
}
final Provider _provider = provider;
Collects.forEach(map, new Consumer2<String, String>() {
Expand Down
2 changes: 1 addition & 1 deletion langx-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.langx</groupId>
<artifactId>langx</artifactId>
<version>3.6.3</version>
<version>3.6.4</version>
</parent>

<artifactId>langx-java</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static void insertProviderAt(Provider provider, int position) {

public static void loadLangxProvider() {
LangxSecurityProvider langxSecurityProvider = new LangxSecurityProvider();
// insertProvider(langxSecurityProvider);
insertProvider(langxSecurityProvider);
// insert 后,由于 langx provider 并没有经过 Oracle官方签名,所以只能用它的 message digest算法,所有涉及到的加解密的算法都不可用
// 如果去官网申请的话:https://www.oracle.com/java/technologies/javase/getcodesigningcertificate.html 这里是教程

Expand Down
2 changes: 1 addition & 1 deletion langx-java8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.fangjinuo.langx</groupId>
<artifactId>langx</artifactId>
<version>3.6.3</version>
<version>3.6.4</version>
</parent>

<artifactId>langx-java8</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.fangjinuo.langx</groupId>
<artifactId>langx</artifactId>
<packaging>pom</packaging>
<version>3.6.3</version>
<version>3.6.4</version>

<name>${groupId}:${artifactId}:${version}</name>

Expand Down

0 comments on commit a973804

Please sign in to comment.