...

Source file src/github.com/decred/dcrd/dcrec/secp256k1/v4/curve_embedded.go

Documentation: github.com/decred/dcrd/dcrec/secp256k1/v4

     1  // Copyright (c) 2024 The Decred developers
     2  // Use of this source code is governed by an ISC
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build tinygo
     6  
     7  package secp256k1
     8  
     9  // This file contains the variants suitable for
    10  // memory or storage constrained environments.
    11  
    12  func scalarBaseMultNonConst(k *ModNScalar, result *JacobianPoint) {
    13  	scalarBaseMultNonConstSlow(k, result)
    14  }
    15  

View as plain text