()
| 28 | // Decrypt() and it will examine the element to determine which Decrypter to use. |
| 29 | type Decrypter interface { |
| 30 | Algorithm() string |
| 31 | Decrypt(key interface{}, ciphertextEl *etree.Element) ([]byte, error) |
| 32 | } |
| 33 |
no outgoing calls
no test coverage detected