EmitEncryptedFile produces an encrypted json file's bytes from its corresponding sops.Tree object
(in sops.Tree)
| 67 | |
| 68 | // EmitEncryptedFile produces an encrypted json file's bytes from its corresponding sops.Tree object |
| 69 | func (store BinaryStore) EmitEncryptedFile(in sops.Tree) ([]byte, error) { |
| 70 | return store.store.EmitEncryptedFile(in) |
| 71 | } |
| 72 | |
| 73 | var BinaryStoreEmitPlainError = errors.New("error emitting binary store") |
| 74 |
nothing calls this directly
no test coverage detected