SetEncryptedDataKey sets the encrypted SOPS data key for this master key.
(enc []byte)
| 211 | |
| 212 | // SetEncryptedDataKey sets the encrypted SOPS data key for this master key. |
| 213 | func (key *MasterKey) SetEncryptedDataKey(enc []byte) { |
| 214 | key.EncryptedKey = string(enc) |
| 215 | } |
| 216 | |
| 217 | func formatError(msg string, err error, errs errSet, unusedLocations []string) error { |
| 218 | var loadSuffix string |