Documentation ¶
Index ¶
- Variables
- func BE2LE_16(inp []byte) []byte
- func BE2LE_16_Bytes(in []byte) []byte
- func BE2LE_32(inp []byte) []byte
- func BE2LE_32_Bytes(in []byte) []byte
- func BE2LE_64(inp []byte) []byte
- func BE2LE_64_Bytes(in []byte) []byte
- func Base64Decode(s string) ([]byte, error)
- func Base64Encode(src []byte) string
- func BmpString(s string) ([]byte, error)
- func BmpStringZeroTerminated(s string) ([]byte, error)
- func BytesPadding(text []byte, size int) []byte
- func BytesSplit(buf []byte, size int) [][]byte
- func BytesToString(buf []byte) string
- func Byteswap32(x uint32) uint32
- func CryptoHashSum(typ string, slices ...[]byte) ([]byte, error)
- func DecodeBMPString(bmpString []byte) (string, error)
- func EncodeDerToPem(data []byte, blockType string) []byte
- func GenRandom(n int) ([]byte, error)
- func GetBlockTypeFromName(name string) string
- func GetCryptoHash(typ string) (crypto.Hash, error)
- func HashNames() []string
- func HashSum(typ string, slices ...[]byte) ([]byte, error)
- func HexDecode(s string) ([]byte, error)
- func HexEncode(src []byte) string
- func HexPadding(text string, size int) string
- func LE2BE_16(inp []byte) []byte
- func LE2BE_16_Bytes(in []byte) []byte
- func LE2BE_32(inp []byte) []byte
- func LE2BE_32_Bytes(in []byte) []byte
- func LE2BE_64(inp []byte) []byte
- func LE2BE_64_Bytes(in []byte) []byte
- func NewError(errs ...error) error
- func ParsePemToDer(data []byte) ([]byte, error)
- func Recover(fn func()) (err error)
- func Rotl16(x, n uint16) uint16
- func Rotl32(x, n uint32) uint32
- func Rotl64(x, n uint64) uint64
- func Rotr16(x, n uint16) uint16
- func Rotr32(x, n uint32) uint32
- func Rotr64(x, n uint64) uint64
- func StringToBytes(str string) []byte
- type Block
- type Cipher
- type CipherFunc
- type CipherFuncMap
- type Config
- func (this *Config) All() map[string]any
- func (this *Config) Clean()
- func (this *Config) Get(name string) any
- func (this *Config) GetBool(name string) bool
- func (this *Config) GetBoolSlice(name string) []bool
- func (this *Config) GetBytes(name string) []byte
- func (this *Config) GetDuration(name string) time.Duration
- func (this *Config) GetDurationSlice(name string) []time.Duration
- func (this *Config) GetFloat32(name string) float32
- func (this *Config) GetFloat64(name string) float64
- func (this *Config) GetInt(name string) int
- func (this *Config) GetInt16(name string) int16
- func (this *Config) GetInt32(name string) int32
- func (this *Config) GetInt64(name string) int64
- func (this *Config) GetInt8(name string) int8
- func (this *Config) GetIntSlice(name string) []int
- func (this *Config) GetSlice(name string) []any
- func (this *Config) GetString(name string) string
- func (this *Config) GetStringMap(name string) map[string]any
- func (this *Config) GetStringMapBool(name string) map[string]bool
- func (this *Config) GetStringMapInt(name string) map[string]int
- func (this *Config) GetStringMapInt64(name string) map[string]int64
- func (this *Config) GetStringMapString(name string) map[string]string
- func (this *Config) GetStringMapStringSlice(name string) map[string][]string
- func (this *Config) GetStringSlice(name string) []string
- func (this *Config) GetTime(name string) time.Time
- func (this *Config) GetUint(name string) uint
- func (this *Config) GetUint16(name string) uint16
- func (this *Config) GetUint32(name string) uint32
- func (this *Config) GetUint64(name string) uint64
- func (this *Config) GetUint8(name string) uint8
- func (this *Config) Has(name string) bool
- func (this *Config) Len() int
- func (this *Config) Names() []string
- func (this *Config) Remove(name string) *Config
- func (this *Config) Set(name string, data any) *Config
- func (this *Config) String() string
- func (this *Config) WithData(data map[string]any) *Config
- type Encoding
- func (this Encoding) Base64Decode(s string) ([]byte, error)
- func (this Encoding) Base64Encode(src []byte) string
- func (this Encoding) BytesPadding(text []byte, size int) []byte
- func (this Encoding) HexDecode(s string) ([]byte, error)
- func (this Encoding) HexEncode(src []byte) string
- func (this Encoding) HexPadding(text string, size int) string
- type ErrorEvent
- type ErrorFunc
- type Errors
- func (this *Errors) All() []error
- func (this *Errors) Append(errs ...error) *Errors
- func (this *Errors) Count() int
- func (this *Errors) Error() string
- func (this *Errors) First() error
- func (this *Errors) Get(n int) error
- func (this *Errors) IsNil() bool
- func (this *Errors) Last() error
- func (this *Errors) Prepend(errs ...error) *Errors
- func (this *Errors) Range(fn func(int, error))
- func (this *Errors) Reset() *Errors
- func (this *Errors) String() string
- func (this *Errors) Unwrap() []error
- func (this *Errors) WithErrors(errs []error) *Errors
- type Hash
- type HashFunc
- type Padding
- func (this Padding) ISO10126Padding(text []byte, blockSize int) []byte
- func (this Padding) ISO10126UnPadding(src []byte) ([]byte, error)
- func (this Padding) ISO7816_4Padding(text []byte, blockSize int) []byte
- func (this Padding) ISO7816_4UnPadding(src []byte) ([]byte, error)
- func (this Padding) ISO97971Padding(text []byte, blockSize int) []byte
- func (this Padding) ISO97971UnPadding(src []byte) ([]byte, error)
- func (this Padding) PBOC2Padding(text []byte, blockSize int) []byte
- func (this Padding) PBOC2UnPadding(src []byte) ([]byte, error)
- func (this Padding) PKCS1Padding(text []byte, blockSize int, bt string) []byte
- func (this Padding) PKCS1UnPadding(src []byte) ([]byte, error)
- func (this Padding) PKCS5Padding(text []byte) []byte
- func (this Padding) PKCS5UnPadding(src []byte) ([]byte, error)
- func (this Padding) PKCS7Padding(text []byte, blockSize int) []byte
- func (this Padding) PKCS7UnPadding(src []byte) ([]byte, error)
- func (this Padding) RandomBytes(length uint) []byte
- func (this Padding) TBCPadding(text []byte, blockSize int) []byte
- func (this Padding) TBCUnPadding(src []byte) ([]byte, error)
- func (this Padding) X923Padding(text []byte, blockSize int) []byte
- func (this Padding) X923UnPadding(src []byte) ([]byte, error)
- func (this Padding) ZeroPadding(text []byte, blockSize int) []byte
- func (this Padding) ZeroUnPadding(src []byte) ([]byte, error)
Constants ¶
This section is empty.
Variables ¶
var ( // 编码 // Encode(out io.Writer, b *Block) error Encode = pem.Encode // 编码 // EncodeToMemory(b *Block) []byte EncodeToMemory = pem.EncodeToMemory // 解码 // Decode(data []byte) (p *Block, rest []byte) Decode = pem.Decode )
var PemBlockTypeMap = map[string]string{
"pri_key": "PRIVATE KEY",
"en_pri_key": "ENCRYPTED PRIVATE KEY",
"pub_key": "PUBLIC KEY",
"ec_pri_key": "EC PRIVATE KEY",
"dsa_pri_key": "DSA PRIVATE KEY",
"rsa_pri_key": "RSA PRIVATE KEY",
}
BlockType 列表
Functions ¶
func BE2LE_16_Bytes ¶ added in v1.0.2036
func BE2LE_32_Bytes ¶ added in v1.0.2036
func BE2LE_64_Bytes ¶ added in v1.0.2036
func Base64Decode ¶ added in v1.0.2002
func Base64Encode ¶ added in v1.0.2002
func BmpStringZeroTerminated ¶ added in v1.0.2032
BmpStringZeroTerminated returns s encoded in UCS-2 with a zero terminator.
func BytesPadding ¶ added in v1.0.2039
func Byteswap32 ¶ added in v1.0.2037
func CryptoHashSum ¶ added in v1.0.2003
签名后数据
func DecodeBMPString ¶ added in v1.0.2032
DecodeBMPString return utf-8 string
func EncodeDerToPem ¶ added in v1.0.1033
der 证书编码为 pem 证书
func GetBlockTypeFromName ¶ added in v1.0.1033
获取 BlockType 类型
func HexPadding ¶ added in v1.0.2002
func LE2BE_16_Bytes ¶ added in v1.0.2036
func LE2BE_32_Bytes ¶ added in v1.0.2036
func LE2BE_64_Bytes ¶ added in v1.0.2036
func ParsePemToDer ¶ added in v1.0.1033
解析 pem 证书为 der 证书
Types ¶
type Cipher ¶
type Cipher struct {
// contains filtered or unexported fields
}
*
- 加密方式 *
- @create 2022-7-26
- @author deatil
type Config ¶ added in v1.0.1046
type Config struct {
// contains filtered or unexported fields
}
*
- 配置 *
- @create 2023-2-13
- @author deatil
func (*Config) GetBoolSlice ¶ added in v1.0.1046
func (*Config) GetDuration ¶ added in v1.0.1046
func (*Config) GetDurationSlice ¶ added in v1.0.1046
func (*Config) GetFloat32 ¶ added in v1.0.1046
func (*Config) GetFloat64 ¶ added in v1.0.1046
func (*Config) GetIntSlice ¶ added in v1.0.1046
func (*Config) GetStringMap ¶ added in v1.0.1046
func (*Config) GetStringMapBool ¶ added in v1.0.1046
func (*Config) GetStringMapInt ¶ added in v1.0.1046
func (*Config) GetStringMapInt64 ¶ added in v1.0.1046
func (*Config) GetStringMapString ¶ added in v1.0.1046
func (*Config) GetStringMapStringSlice ¶ added in v1.0.1046
func (*Config) GetStringSlice ¶ added in v1.0.1046
type Encoding ¶
type Encoding struct{}
*
- 编码 *
- @create 2022-4-17
- @author deatil
func (Encoding) Base64Decode ¶
Base64 解码
func (Encoding) BytesPadding ¶ added in v1.0.2048
BytesPadding
type ErrorEvent ¶ added in v1.0.2022
type ErrorEvent struct {
// contains filtered or unexported fields
}
*
- 错误事件 *
- @create 2023-8-11
- @author deatil
type Errors ¶ added in v1.0.1026
type Errors struct {
// contains filtered or unexported fields
}
*
- 错误记录 *
- @create 2022-8-10
- @author deatil
func (*Errors) WithErrors ¶ added in v1.0.1026
设置
type Hash ¶
type Hash struct {
// contains filtered or unexported fields
}
*
- 摘要 *
- @create 2022-4-16
- @author deatil
type Padding ¶
type Padding struct{}
*
- 补码 *
- @create 2022-4-17
- @author deatil
func (Padding) ISO10126Padding ¶
ISO10126Padding 填充至符合块大小的整数倍,填充值最后一个字节为填充的数量数,其他字节填充随机字节。
func (Padding) ISO10126UnPadding ¶
func (Padding) ISO7816_4Padding ¶
ISO7816_4Padding 填充至符合块大小的整数倍,填充值第一个字节为0x80,其他字节填0x00。
func (Padding) ISO7816_4UnPadding ¶
func (Padding) ISO97971Padding ¶ added in v1.0.1026
ISO/IEC 9797-1 Padding Method 2 填充至符合块大小的整数倍,填充值第一个字节为0x80,其他字节填0x00。
func (Padding) ISO97971UnPadding ¶ added in v1.0.1026
func (Padding) PBOC2Padding ¶ added in v1.0.2027
PBOC2.0的MAC运算数据填充规范 若原加密数据的最末字节可能是0x80,则不推荐使用该模式
func (Padding) PBOC2UnPadding ¶ added in v1.0.2027
func (Padding) PKCS1Padding ¶
填充格式如下: Padding = 00 + BT + PS + 00 + D 00为固定字节 BT为处理模式 PS为填充字节,填充数量为 k - 3 - D ,k表示密钥长度, D表示原文长度。 PS的最小长度为8个字节。填充的值根据BT值来定: BT = 00时,填充全0x00 BT = 01时,填充全0xFF BT = 02时,随机填充,但不能为00。
func (Padding) PKCS5Padding ¶
PKCS7Padding的子集,块大小固定为8字节
func (Padding) PKCS7Padding ¶
明文补码算法 填充至符合块大小的整数倍,填充值为填充数量数
func (Padding) PKCS7UnPadding ¶
明文减码算法
func (Padding) TBCPadding ¶
TBCPadding(Trailling-Bit-Compliment) 填充至符合块大小的整数倍,原文最后一位为1时填充0x00,最后一位为0时填充0xFF。
func (Padding) X923Padding ¶
X923Padding 填充至符合块大小的整数倍,填充值最后一个字节为填充的数量数,其他字节填0
func (Padding) ZeroPadding ¶
数据长度不对齐时使用0填充,否则不填充