notboring.mx raw

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