| 64 | } |
| 65 | |
| 66 | type SignatureAlgorithm struct { |
| 67 | Name string `json:"name"` |
| 68 | OID string `json:"oid"` |
| 69 | algo x509.SignatureAlgorithm |
| 70 | hash crypto.Hash |
| 71 | } |
| 72 | |
| 73 | func (s SignatureAlgorithm) String() string { |
| 74 | if s.Name == "" { |
nothing calls this directly
no outgoing calls
no test coverage detected