2025-12-01 09:35:06 +08:00
|
|
|
English | [简体中文](README.zh_CN.MD)
|
2023-03-17 17:54:14 +08:00
|
|
|
|
2022-01-12 20:42:11 +08:00
|
|
|
<div align=center>
|
2026-02-11 14:37:49 +08:00
|
|
|
<img src="https://goframe.org/img/logo_full.png" width="300" alt="goframe logo"/>
|
2018-12-17 20:44:38 +08:00
|
|
|
|
2023-05-11 20:44:56 +08:00
|
|
|
[](https://pkg.go.dev/github.com/gogf/gf/v2)
|
2023-10-24 20:33:10 +08:00
|
|
|
[](https://github.com/gogf/gf/actions/workflows/ci-main.yml)
|
2025-08-29 10:28:29 +08:00
|
|
|
[](https://scorecard.dev/viewer/?uri=github.com/gogf/gf)
|
|
|
|
|
[](https://bestpractices.coreinfrastructure.org/projects/9233)
|
2023-03-17 17:54:14 +08:00
|
|
|
[](https://goreportcard.com/report/github.com/gogf/gf/v2)
|
2023-03-07 21:27:23 +08:00
|
|
|
[](https://codecov.io/gh/gogf/gf)
|
2024-01-03 19:49:06 +08:00
|
|
|
[](https://github.com/gogf/gf)
|
2021-03-30 18:00:44 +08:00
|
|
|
[](https://github.com/gogf/gf)
|
2023-12-15 15:56:08 +08:00
|
|
|
|
2024-01-03 19:49:06 +08:00
|
|
|
[](https://github.com/gogf/gf/releases)
|
|
|
|
|
[](https://github.com/gogf/gf/pulls)
|
|
|
|
|
[](https://github.com/gogf/gf/pulls?q=is%3Apr+is%3Aclosed)
|
|
|
|
|
[](https://github.com/gogf/gf/issues)
|
|
|
|
|
[](https://github.com/gogf/gf/issues?q=is%3Aissue+is%3Aclosed)
|
|
|
|
|

|
|
|
|
|

|
2026-01-28 15:42:11 +08:00
|
|
|
[](https://deepwiki.com/gogf/gf)
|
2023-12-15 15:56:08 +08:00
|
|
|
|
2022-01-12 20:43:36 +08:00
|
|
|
</div>
|
2021-03-30 18:00:44 +08:00
|
|
|
|
2024-11-27 21:03:31 +08:00
|
|
|
A powerful framework for faster, easier, and more efficient project development.
|
2018-08-06 12:59:08 +08:00
|
|
|
|
feat(crypto/grsa): Add RSA encryption and decryption function (#4571)
补充RSA加密解密功能
This pull request improves documentation and developer onboarding for
the project, with a particular focus on the RSA cryptography package and
general installation instructions. The main changes include the addition
of a comprehensive README for the `grsa` RSA package, updated
installation steps in both English and Chinese documentation, and minor
clarifications to documentation links.
**Documentation improvements:**
* Added a detailed `README.md` for the `crypto/grsa` package, including
features, security considerations, usage examples, API descriptions, key
format explanations, and error handling guidance.
* Updated the English (`README.MD`) and Chinese (`README.zh_CN.MD`)
documentation to include a clear installation section with `go get`
instructions for easier onboarding.
[[1]](diffhunk://#diff-01e6d9ffed056a02cae8d8a0ec5d476a64d017bf85c0d5a94bb23ca21f33f5aaR27-R32)
[[2]](diffhunk://#diff-c93759cb9a9500f20e551c741eb167fc72825fd638d36121357feb8253ce6ac1R27-R41)
* Clarified and improved documentation links in both English and Chinese
README files, including the addition of a link to the documentation
source and improved naming for the GoDoc/Go package documentation.
[[1]](diffhunk://#diff-01e6d9ffed056a02cae8d8a0ec5d476a64d017bf85c0d5a94bb23ca21f33f5aaR41)
[[2]](diffhunk://#diff-c93759cb9a9500f20e551c741eb167fc72825fd638d36121357feb8253ce6ac1R27-R41)
**Developer tooling:**
* Added a commented-out `go install` command for `golangci-lint` in the
`Makefile` to assist developers in setting up linting tools.
---------
Co-authored-by: hailaz <739476267@qq.com>
2025-12-26 18:18:30 +08:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
go get -u github.com/gogf/gf/v2
|
|
|
|
|
```
|
|
|
|
|
|
2025-11-21 14:12:56 +08:00
|
|
|
## Documentation
|
2020-02-22 17:06:58 +08:00
|
|
|
|
2025-11-21 14:12:56 +08:00
|
|
|
- Official Site: [https://goframe.org](https://goframe.org)
|
|
|
|
|
- Official Site(en): [https://goframe.org/en](https://goframe.org/en)
|
|
|
|
|
- 国内镜像: [https://goframe.org.cn](https://goframe.org.cn)
|
2026-01-28 15:42:11 +08:00
|
|
|
- Mirror Site: [https://pages.goframe.org](https://pages.goframe.org)
|
2025-11-21 14:12:56 +08:00
|
|
|
- Mirror Site: [Offline Docs](https://github.com/gogf/goframe.org-pdf?tab=readme-ov-file#%E6%9C%80%E6%96%B0%E7%89%88%E6%9C%AC)
|
2024-11-12 21:30:46 +08:00
|
|
|
- GoDoc API: [https://pkg.go.dev/github.com/gogf/gf/v2](https://pkg.go.dev/github.com/gogf/gf/v2)
|
feat(crypto/grsa): Add RSA encryption and decryption function (#4571)
补充RSA加密解密功能
This pull request improves documentation and developer onboarding for
the project, with a particular focus on the RSA cryptography package and
general installation instructions. The main changes include the addition
of a comprehensive README for the `grsa` RSA package, updated
installation steps in both English and Chinese documentation, and minor
clarifications to documentation links.
**Documentation improvements:**
* Added a detailed `README.md` for the `crypto/grsa` package, including
features, security considerations, usage examples, API descriptions, key
format explanations, and error handling guidance.
* Updated the English (`README.MD`) and Chinese (`README.zh_CN.MD`)
documentation to include a clear installation section with `go get`
instructions for easier onboarding.
[[1]](diffhunk://#diff-01e6d9ffed056a02cae8d8a0ec5d476a64d017bf85c0d5a94bb23ca21f33f5aaR27-R32)
[[2]](diffhunk://#diff-c93759cb9a9500f20e551c741eb167fc72825fd638d36121357feb8253ce6ac1R27-R41)
* Clarified and improved documentation links in both English and Chinese
README files, including the addition of a link to the documentation
source and improved naming for the GoDoc/Go package documentation.
[[1]](diffhunk://#diff-01e6d9ffed056a02cae8d8a0ec5d476a64d017bf85c0d5a94bb23ca21f33f5aaR41)
[[2]](diffhunk://#diff-c93759cb9a9500f20e551c741eb167fc72825fd638d36121357feb8253ce6ac1R27-R41)
**Developer tooling:**
* Added a commented-out `go install` command for `golangci-lint` in the
`Makefile` to assist developers in setting up linting tools.
---------
Co-authored-by: hailaz <739476267@qq.com>
2025-12-26 18:18:30 +08:00
|
|
|
- Doc Source: [https://github.com/gogf/gf-site](https://github.com/gogf/gf-site)
|
2024-11-12 21:30:46 +08:00
|
|
|
|
2025-11-21 14:12:56 +08:00
|
|
|
## Contributors
|
2020-04-23 17:23:57 +08:00
|
|
|
|
2024-11-27 21:03:31 +08:00
|
|
|
💖 [Thanks to all the contributors who made GoFrame possible](https://github.com/gogf/gf/graphs/contributors) 💖
|
2024-11-13 20:48:02 +08:00
|
|
|
|
2024-11-12 21:30:46 +08:00
|
|
|
<a href="https://github.com/gogf/gf/graphs/contributors">
|
2026-05-14 16:00:16 +08:00
|
|
|
<img src="https://goframe.org/img/contributors.svg?version=v2.10.2" alt="goframe contributors"/>
|
2024-11-12 21:30:46 +08:00
|
|
|
</a>
|
2020-04-23 17:23:57 +08:00
|
|
|
|
2025-11-21 14:12:56 +08:00
|
|
|
## License
|
2019-06-25 23:17:14 +08:00
|
|
|
|
2021-12-04 00:07:49 +08:00
|
|
|
`GoFrame` is licensed under the [MIT License](LICENSE), 100% free and open-source, forever.
|