KeyDescriptor represents the XMLSEC object of the same name
| 151 | |
| 152 | // KeyDescriptor represents the XMLSEC object of the same name |
| 153 | type KeyDescriptor struct { |
| 154 | Use string `xml:"use,attr"` |
| 155 | KeyInfo KeyInfo `xml:"http://www.w3.org/2000/09/xmldsig# KeyInfo"` |
| 156 | EncryptionMethods []EncryptionMethod `xml:"EncryptionMethod"` |
| 157 | } |
| 158 | |
| 159 | // EncryptionMethod represents the XMLSEC object of the same name |
| 160 | type EncryptionMethod struct { |
nothing calls this directly
no outgoing calls
no test coverage detected