des
des
https://pkg.go.dev/crypto/des@go1.20.1
Package des implements the Data Encryption Standard (DES) and the Triple Data Encryption Algorithm (TDEA) as defined in U.S. Federal Information Processing Standards Publication 46-3.
DES is cryptographically broken and should not be used for secure applications.
常量
View Source
The DES block size in bytes.
变量
This section is empty.
函数
func NewCipher
1
| func NewCipher(key []byte) (cipher.Block, error)
|
NewCipher creates and returns a new cipher.Block.
func NewTripleDESCipher
1
| func NewTripleDESCipher(key []byte) (cipher.Block, error)
|
NewTripleDESCipher creates and returns a new cipher.Block.
NewTripleDESCipher Example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package main
import (
"crypto/des"
)
func main() {
// NewTripleDESCipher can also be used when EDE2 is required by
// duplicating the first 8 bytes of the 16-byte key.
ede2Key := []byte("example key 1234")
var tripleDESKey []byte
tripleDESKey = append(tripleDESKey, ede2Key[:16]...)
tripleDESKey = append(tripleDESKey, ede2Key[:8]...)
_, err := des.NewTripleDESCipher(tripleDESKey)
if err != nil {
panic(err)
}
// See crypto/cipher for how to use a cipher.Block for encryption and
// decryption.
}
|
类型
type KeySizeError
(KeySizeError) Error
1
| func (k KeySizeError) Error() string
|
最后修改 June 5, 2023:
更新标准库 (33f199b)