(r Recipient, fileKey []byte)
| 201 | } |
| 202 | |
| 203 | func wrapWithLabels(r Recipient, fileKey []byte) (s []*Stanza, labels []string, err error) { |
| 204 | if r, ok := r.(RecipientWithLabels); ok { |
| 205 | return r.WrapWithLabels(fileKey) |
| 206 | } |
| 207 | s, err = r.Wrap(fileKey) |
| 208 | return |
| 209 | } |
| 210 | |
| 211 | func slicesEqual(s1, s2 []string) bool { |
| 212 | if len(s1) != len(s2) { |
no test coverage detected
searching dependent graphs…