(fileKey []byte)
| 64 | } |
| 65 | |
| 66 | func (r *Recipient) Wrap(fileKey []byte) (stanzas []*age.Stanza, err error) { |
| 67 | stanzas, _, err = r.WrapWithLabels(fileKey) |
| 68 | return |
| 69 | } |
| 70 | |
| 71 | func (r *Recipient) WrapWithLabels(fileKey []byte) (stanzas []*age.Stanza, labels []string, err error) { |
| 72 | defer func() { |
nothing calls this directly
no test coverage detected