1// Copyright 2022 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 !boringcrypto
6
7package ecdsa
8
9import "crypto/internal/boring"
10
11func boringPublicKey(*PublicKey) (*boring.PublicKeyECDSA, error) {
12	panic("boringcrypto: not available")
13}
14func boringPrivateKey(*PrivateKey) (*boring.PrivateKeyECDSA, error) {
15	panic("boringcrypto: not available")
16}
17