mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-03 09:17:38 +00:00
f8bcf4eba5
Add debug build to make and docker
14 lines
420 B
Go
14 lines
420 B
Go
// Copyright 2015 Jeffrey Wilcke, Felix Lange, Gustav Simonsson. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be found in
|
|
// the LICENSE file.
|
|
|
|
// +build gofuzz !cgo
|
|
|
|
package secp256k1
|
|
|
|
import "math/big"
|
|
|
|
func (BitCurve *BitCurve) ScalarMult(Bx, By *big.Int, scalar []byte) (*big.Int, *big.Int) {
|
|
panic("ScalarMult is not available when secp256k1 is built without cgo")
|
|
}
|