golang.org/x/crypto/openpgp/packet.Signature.SignUserId (method)

4 uses

	golang.org/x/crypto/openpgp/packet (current package)
		signature.go#L578: func (sig *Signature) SignUserId(id string, pub *PublicKey, priv *PrivateKey, config *Config) error {

	golang.org/x/crypto/openpgp
		keys.go#L548: 	err = e.Identities[uid.Id].SelfSignature.SignUserId(uid.Id, e.PrimaryKey, e.PrivateKey, config)
		keys.go#L602: 		err = ident.SelfSignature.SignUserId(ident.UserId.Id, e.PrimaryKey, e.PrivateKey, config)
		keys.go#L688: 	if err := sig.SignUserId(identity, e.PrimaryKey, signer.PrivateKey, config); err != nil {