1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-17 03:02:28 +08:00

docs: fix source link disabled issue

This commit is contained in:
dudaodong
2022-01-28 11:50:25 +08:00
parent 134aded4d8
commit 5963830879
4 changed files with 47 additions and 34 deletions

View File

@@ -5,7 +5,7 @@ Package convertor contains some functions for data type convertion.
## Source: ## Source:
[https://github.com/duke-git/lancet/blob/main/convertor/convertor.go](!https://github.com/duke-git/lancet/blob/main/convertor/convertor.go) [https://github.com/duke-git/lancet/blob/main/convertor/convertor.go](https://github.com/duke-git/lancet/blob/main/convertor/convertor.go)
<div STYLE="page-break-after: always;"></div> <div STYLE="page-break-after: always;"></div>

View File

@@ -5,7 +5,7 @@ convertor转换器包支持一些常见的数据类型转换
## 源码: ## 源码:
[https://github.com/duke-git/lancet/blob/main/convertor/convertor.go](!https://github.com/duke-git/lancet/blob/main/convertor/convertor.go) [https://github.com/duke-git/lancet/blob/main/convertor/convertor.go](https://github.com/duke-git/lancet/blob/main/convertor/convertor.go)
<div STYLE="page-break-after: always;"></div> <div STYLE="page-break-after: always;"></div>

View File

@@ -5,10 +5,10 @@ Package cryptor contains some functions for data encryption and decryption. Supp
## Source: ## Source:
- [https://github.com/duke-git/lancet/blob/main/cryptor/aes.go](!https://github.com/duke-git/lancet/blob/main/cryptor/aes.go) - [https://github.com/duke-git/lancet/blob/main/cryptor/aes.go](https://github.com/duke-git/lancet/blob/main/cryptor/aes.go)
- [https://github.com/duke-git/lancet/blob/main/cryptor/des.go](!https://github.com/duke-git/lancet/blob/main/cryptor/des.go) - [https://github.com/duke-git/lancet/blob/main/cryptor/des.go](https://github.com/duke-git/lancet/blob/main/cryptor/des.go)
- [https://github.com/duke-git/lancet/blob/main/cryptor/basic.go](!https://github.com/duke-git/lancet/blob/main/cryptor/basic.go) - [https://github.com/duke-git/lancet/blob/main/cryptor/basic.go](https://github.com/duke-git/lancet/blob/main/cryptor/basic.go)
- [https://github.com/duke-git/lancet/blob/main/cryptor/rsa.go](!https://github.com/duke-git/lancet/blob/main/cryptor/ras.go) - [https://github.com/duke-git/lancet/blob/main/cryptor/rsa.go](https://github.com/duke-git/lancet/blob/main/cryptor/rsa.go)
<div STYLE="page-break-after: always;"></div> <div STYLE="page-break-after: always;"></div>

View File

@@ -5,10 +5,10 @@ cryptor加密包支持数据加密和解密获取md5hash值。支持base64
## 源码: ## 源码:
- [https://github.com/duke-git/lancet/blob/main/cryptor/aes.go](!https://github.com/duke-git/lancet/blob/main/cryptor/aes.go) - [https://github.com/duke-git/lancet/blob/main/cryptor/aes.go](https://github.com/duke-git/lancet/blob/main/cryptor/aes.go)
- [https://github.com/duke-git/lancet/blob/main/cryptor/des.go](!https://github.com/duke-git/lancet/blob/main/cryptor/des.go) - [https://github.com/duke-git/lancet/blob/main/cryptor/des.go](https://github.com/duke-git/lancet/blob/main/cryptor/des.go)
- [https://github.com/duke-git/lancet/blob/main/cryptor/basic.go](!https://github.com/duke-git/lancet/blob/main/cryptor/basic.go) - [https://github.com/duke-git/lancet/blob/main/cryptor/basic.go](https://github.com/duke-git/lancet/blob/main/cryptor/basic.go)
- [https://github.com/duke-git/lancet/blob/main/cryptor/rsa.go](!https://github.com/duke-git/lancet/blob/main/cryptor/ras.go) - [https://github.com/duke-git/lancet/blob/main/cryptor/rsa.go](https://github.com/duke-git/lancet/blob/main/cryptor/rsa.go)
<div STYLE="page-break-after: always;"></div> <div STYLE="page-break-after: always;"></div>
@@ -23,30 +23,43 @@ import (
## 目录 ## 目录
- [AesEcbEncrypt](#AesEcbEncrypt) - [Cryptor](#cryptor)
- [AesEcbDecrypt](#AesEcbDecrypt) - [源码:](#源码)
- [AesCbcEncrypt](#AesCbcEncrypt) - [用法:](#用法)
- [AesCbcDecrypt](#AesCbcDecrypt) - [目录](#目录)
- [AesCtrCrypt](#AesCtrCrypt) - [文档](#文档)
- [AesCfbEncrypt](#AesCfbEncrypt) - [<span id="AesEcbEncrypt">AesEcbEncrypt</span>](#aesecbencrypt)
- [AesCfbDecrypt](#AesCfbDecrypt) - [<span id="AesEcbDecrypt">AesEcbDecrypt</span>](#aesecbdecrypt)
- [AesOfbEncrypt](#AesOfbEncrypt) - [<span id="AesCbcEncrypt">AesCbcEncrypt</span>](#aescbcencrypt)
- [AesOfbDecrypt](#AesOfbDecrypt) - [<span id="AesCbcDecrypt">AesCbcDecrypt</span>](#aescbcdecrypt)
- [Base64StdEncode](#Base64StdEncode) - [<span id="AesCtrCrypt">AesCtrCrypt</span>](#aesctrcrypt)
- [Base64StdDecode](#Base64StdDecode) - [<span id="AesCfbEncrypt">AesCfbEncrypt</span>](#aescfbencrypt)
- [DesEcbEncrypt](#DesEcbEncrypt) - [<span id="AesCfbDecrypt">AesCfbDecrypt</span>](#aescfbdecrypt)
- [DesEcbDecrypt](#DesEcbDecrypt) - [<span id="AesOfbEncrypt">AesOfbEncrypt</span>](#aesofbencrypt)
- [DesCbcEncrypt](#DesCbcEncrypt) - [<span id="AesCfbDecrypt">AesOfbDecrypt</span>](#aesofbdecrypt)
- [DesCbcDecrypt](#DesCbcDecrypt) - [<span id="Base64StdEncode">Base64StdEncode</span>](#base64stdencode)
- [DesCtrCrypt](#DesCtrCrypt) - [<span id="Base64StdDecode">Base64StdDecode</span>](#base64stddecode)
- [DesCfbEncrypt](#DesCfbEncrypt) - [<span id="DesEcbEncrypt">DesEcbEncrypt</span>](#desecbencrypt)
- [DesCfbDecrypt](#DesCfbDecrypt) - [<span id="DesEcbDecrypt">DesEcbDecrypt</span>](#desecbdecrypt)
- [DesOfbEncrypt](#DesOfbEncrypt) - [<span id="DesCbcEncrypt">DesCbcEncrypt</span>](#descbcencrypt)
- [DesOfbDecrypt](#DesOfbDecrypt) - [<span id="DesCbcDecrypt">DesCbcDecrypt</span>](#descbcdecrypt)
- [HmacMd5](#HmacMd5) - [<span id="DesCtrCrypt">DesCtrCrypt</span>](#desctrcrypt)
- [HmacSha1](#HmacSha1) - [<span id="DesCfbEncrypt">DesCfbEncrypt</span>](#descfbencrypt)
- [HmacSha256](#HmacSha256) - [<span id="DesCfbDecrypt">DesCfbDecrypt</span>](#descfbdecrypt)
- [HmacSha512](#HmacSha512) - [<span id="DesOfbEncrypt">DesOfbEncrypt</span>](#desofbencrypt)
- [<span id="DesOfbDecrypt">DesOfbDecrypt</span>](#desofbdecrypt)
- [<span id="HmacMd5">HmacMd5</span>](#hmacmd5)
- [<span id="HmacSha1">HmacSha1</span>](#hmacsha1)
- [<span id="HmacSha256">HmacSha256</span>](#hmacsha256)
- [<span id="HmacSha512">HmacSha512</span>](#hmacsha512)
- [<span id="Md5String">Md5String</span>](#md5string)
- [<span id="Md5File">Md5File</span>](#md5file)
- [<span id="Sha1">Sha1</span>](#sha1)
- [<span id="Sha256">Sha256</span>](#sha256)
- [<span id="Sha512">Sha512</span>](#sha512)
- [<span id="GenerateRsaKey">GenerateRsaKey</span>](#generatersakey)
- [<span id="RsaEncrypt">RsaEncrypt</span>](#rsaencrypt)
- [<span id="RsaDecrypt">RsaDecrypt</span>](#rsadecrypt)
- [Md5String](#Md5String) - [Md5String](#Md5String)
- [Md5File](#Md5File) - [Md5File](#Md5File)