An open API service indexing awesome lists of open source software.

https://github.com/uk0/rsa_java


https://github.com/uk0/rsa_java

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

## RSA 数字签名

* 私钥签名
* 公钥验签


```java

RSA.sign(body,key)

```

## demo

```java
/**
* 签名的时候注意,签名时候charset 一定要协商好
* */

RSA.sign(inJsonStr.getBytes("GBK"), config.PRIVATEKEY);
```

## python

```python
import rsa
# python 3.x

# rsa 验签通过

```

### Time
* 2018年12月01日20:02:21