type crypto/internal/fips140/ecdsa.PublicKey

13 uses

	crypto/internal/fips140/ecdsa (current package)
		cast.go#L19: 		pub: PublicKey{
		ecdsa.go#L23: 	pub PublicKey
		ecdsa.go#L31: func (priv *PrivateKey) PublicKey() *PublicKey {
		ecdsa.go#L35: type PublicKey struct {
		ecdsa.go#L40: func (pub *PublicKey) Bytes() []byte {
		ecdsa.go#L177: func NewPublicKey[P Point[P]](c *Curve[P], Q []byte) (*PublicKey, error) {
		ecdsa.go#L185: 	return &PublicKey{curve: c.curve, q: Q}, nil
		ecdsa.go#L200: 		pub: PublicKey{
		ecdsa.go#L439: func Verify[P Point[P]](c *Curve[P], pub *PublicKey, hash []byte, sig *Signature) error {
		ecdsa.go#L448: func verifyGeneric[P Point[P]](c *Curve[P], pub *PublicKey, hash []byte, sig *Signature) error {
		ecdsa_noasm.go#L13: func verify[P Point[P]](c *Curve[P], pub *PublicKey, hash []byte, sig *Signature) error {

	crypto/ecdsa
		ecdsa.go#L380: func publicKeyFromFIPS(curve elliptic.Curve, pub *ecdsa.PublicKey) (*PublicKey, error) {
		ecdsa.go#L396: func publicKeyToFIPS[P ecdsa.Point[P]](c *ecdsa.Curve[P], pub *PublicKey) (*ecdsa.PublicKey, error) {