Verify verifies the signature of the signed header.
()
| 53 | |
| 54 | // Verify verifies the signature of the signed header. |
| 55 | func (s *SignedHeader) Verify() error { |
| 56 | return s.HSV.Verify(&s.Header) |
| 57 | } |
| 58 | |
| 59 | // VerifyHash verifies the hash of the signed header. |
| 60 | func (s *SignedHeader) VerifyHash() error { |