Documentation
¶
Overview ¶
package security provides functions to encode and decode data
Index ¶
- func AESDecrypt(cipherText string, key string) (string, error)
- func AESEncrypt(plainText string, key string) (string, error)
- func GenerateRSAPrivateKey(privateKeyPath string, bits int) error
- func GenerateRSAPublicKey(privateKeyPath, publicKeyPath string) error
- func MD5(str string) string
- func MD5_SALT(str string, salt string) string
- func PKCS5Padding(ciphertext []byte, blockSize int) []byte
- func PKCS5UnPadding(plaintext []byte) []byte
- func ParseRSAPublicKey(pubKey []byte) (*rsa.PublicKey, error)
- func RSADecrypt(privateKeyPath string, encryptedData []byte) ([]byte, error)
- func RSAEncrypt(publicKeyPath string, ciphertext []byte) ([]byte, error)
- func RSAStringDecrypt(privateKeyStr string, encryptedDataStr string) (string, error)
- func RSAStringEncrypt(publicKeyStr string, message string) (string, error)
- func RandStr(n int) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GenerateRSAPrivateKey ¶
GenerateRSAPrivateKey 生成RSA私钥文件
func GenerateRSAPublicKey ¶
GenerateRSAPublicKey 从私钥生成公钥文件
func PKCS5Padding ¶
func PKCS5UnPadding ¶
func RSADecrypt ¶
RSADecrypt RSA解密
func RSAEncrypt ¶
RSAEncrypt RSA加密
func RSAStringDecrypt ¶
RSAStringDecrypt RSA解密
func RSAStringEncrypt ¶
RSAStringEncrypt RSA加密
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.