Error joins the errors into a "; " separated string.
()
| 107 | |
| 108 | // Error joins the errors into a "; " separated string. |
| 109 | func (e errSet) Error() string { |
| 110 | str := make([]string, len(e)) |
| 111 | for i, err := range e { |
| 112 | str[i] = err.Error() |
| 113 | } |
| 114 | return strings.Join(str, "; ") |
| 115 | } |
| 116 | |
| 117 | // MasterKeyFromRecipient takes a Bech32-encoded age public key, parses it, and |
| 118 | // returns a new MasterKey. |
no outgoing calls