diff --git a/README.md b/README.md
index 45b1bec..947ddf8 100644
--- a/README.md
+++ b/README.md
@@ -451,6 +451,12 @@ import "github.com/duke-git/lancet/v2/cryptor"
- **RsaDecrypt** : decrypt data with ras algorithm.
[[doc](https://github.com/duke-git/lancet/blob/main/docs/en/api/packages/cryptor.md#RsaDecrypt)]
[[play](https://go.dev/play/p/uef0q1fz53I)]
+- **GenerateRsaKeyPair** : creates rsa private and public key.
+ [[doc](https://github.com/duke-git/lancet/blob/main/docs/en/api/packages/cryptor.md#GenerateRsaKeyPair)]
+- **RsaEncryptOAEP** : encrypts the given data with RSA-OAEP.
+ [[doc](https://github.com/duke-git/lancet/blob/main/docs/en/api/packages/cryptor.md#RsaEncryptOAEP)]
+- **RsaDecryptOAEP** : decrypts the data with RSA-OAEP
+ [[doc](https://github.com/duke-git/lancet/blob/main/docs/en/api/packages/cryptor.md#RsaDecryptOAEP)]
7. Datetime package supports date and time format and compare. index
@@ -703,6 +709,8 @@ import "github.com/duke-git/lancet/v2/fileutil"
- **WriteStringToFile** : write string to target file.
[[doc](https://github.com/duke-git/lancet/blob/main/docs/en/api/packages/fileutil.md#WriteStringToFile)]
[[play](https://go.dev/play/p/GhLS6d8lH_g)]
+- **ReadFile** : read file or url.
+ [[doc](https://github.com/duke-git/lancet/blob/main/docs/en/api/packages/fileutil.md#ReadFile)]
diff --git a/README_zh-CN.md b/README_zh-CN.md
index 339b576..2999198 100644
--- a/README_zh-CN.md
+++ b/README_zh-CN.md
@@ -451,6 +451,12 @@ import "github.com/duke-git/lancet/v2/cryptor"
- **RsaDecrypt** : 用私钥文件 rsa 解密数据。
[[doc](https://github.com/duke-git/lancet/blob/main/docs/api/packages/cryptor.md#RsaDecrypt)]
[[play](https://go.dev/play/p/uef0q1fz53I)]
+- **GenerateRsaKeyPair** : 创建rsa公钥私钥和key。
+ [[doc](https://github.com/duke-git/lancet/blob/main/docs/api/packages/cryptor.md#GenerateRsaKeyPair)]
+- **RsaEncryptOAEP** : rsa OAEP加密。
+ [[doc](https://github.com/duke-git/lancet/blob/main/docs/api/packages/cryptor.md#RsaEncryptOAEP)]
+- **RsaDecryptOAEP** : rsa OAEP解密。
+ [[doc](https://github.com/duke-git/lancet/blob/main/docs/api/packages/cryptor.md#RsaDecryptOAEP)]
7. datetime 日期时间处理包,格式化日期,比较日期。 回到目录
@@ -707,6 +713,8 @@ import "github.com/duke-git/lancet/v2/fileutil"
- **WriteStringToFile** : 将字符串写入文件。
[[doc](https://github.com/duke-git/lancet/blob/main/docs/api/packages/fileutil.md#WriteStringToFile)]
[[play](https://go.dev/play/p/GhLS6d8lH_g)]
+- **ReadFile** : 读取文件或者URL。
+ [[doc](https://github.com/duke-git/lancet/blob/main/docs/api/packages/fileutil.md#ReadFile)]