mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-20 08:03:53 +08:00
12 lines
245 B
Go
12 lines
245 B
Go
/*
|
|
* Copyright (c) 2000-2018, 达梦数据库有限公司.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
package security
|
|
|
|
type Cipher interface {
|
|
Encrypt(plaintext []byte, genDigest bool) []byte
|
|
Decrypt(ciphertext []byte, checkDigest bool) ([]byte, error)
|
|
}
|