Source file src/crypto/rsa/notboring.go
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 rsa 8 9 import "crypto/internal/boring" 10 11 func boringPublicKey(*PublicKey) (*boring.PublicKeyRSA, error) { 12 panic("boringcrypto: not available") 13 } 14 func boringPrivateKey(*PrivateKey) (*boring.PrivateKeyRSA, error) { 15 panic("boringcrypto: not available") 16 } 17