blob: ddb19687160da3b584d71fbd670db88d6b6d6c09 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package bcrypter
import "v.io/v23/security"
error (
Internal(err error) {
"en": "internal error: {err}",
}
NoParams(pattern security.BlessingPattern) {
"en": "no public parameters available for encrypting for pattern: {pattern}",
}
PrivateKeyNotFound() {
"en": "no private key found for decrypting ciphertext",
}
InvalidPrivateKey(err error) {
"en": "private key is invalid: {err}",
}
)