1234567891011121314151617181920212223 |
- package pkcs12
- import "errors"
- var (
-
- ErrDecryption = errors.New("pkcs12: decryption error, incorrect padding")
-
-
- ErrIncorrectPassword = errors.New("pkcs12: decryption password incorrect")
- )
- type NotImplementedError string
- func (e NotImplementedError) Error() string {
- return "pkcs12: " + string(e)
- }
|