golang.org/x/crypto/ssh.Signature.Blob (field)

12 uses

	golang.org/x/crypto/ssh (current package)
		certs.go#L41: 	Blob   []byte
		certs.go#L522: 	if out.Blob, in, ok = parseString(in); !ok {
		keys.go#L398: 	return rsa.VerifyPKCS1v15((*rsa.PublicKey)(r), hash, digest, sig.Blob)
		keys.go#L478: 	if len(sig.Blob) != 40 {
		keys.go#L481: 	r := new(big.Int).SetBytes(sig.Blob[:20])
		keys.go#L482: 	s := new(big.Int).SetBytes(sig.Blob[20:])
		keys.go#L527: 		Blob:   sig,
		keys.go#L591: 	if ok := ed25519.Verify(ed25519.PublicKey(k), b, sig.Blob); !ok {
		keys.go#L687: 	if err := Unmarshal(sig.Blob, &ecSig); err != nil {
		keys.go#L790: 	if err := Unmarshal(sig.Blob, &ecSig); err != nil {
		keys.go#L889: 	if err := Unmarshal(sig.Blob, &edSig); err != nil {
		keys.go#L1045: 		Blob:   signature,