1// Copyright 2020 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5//go:build !s390x || purego
6
7package ecdsa
8
9import "io"
10
11func verifyAsm(pub *PublicKey, hash []byte, sig []byte) error {
12	return errNoAsm
13}
14
15func signAsm(priv *PrivateKey, csprng io.Reader, hash []byte) (sig []byte, err error) {
16	return nil, errNoAsm
17}
18