Closed
Description
What did you do?
While writing an application that generates ssh certificates I wanted to audit its output, by verifying the signed ssh certificate against signing policies.
What did you expect to see?
A public function that unmarshalls a []byte into an *ssh.Certificate. This is 98% done already with the private parseCert function.
What did you see instead?
No public function to unmarshal ssh certificates (a private one exists) and the Unmarshall (which is the mirror of Marshall and not suitable for my purposes ( see: #21491 )).