2020-12-11 02:05:22 +03:00
|
|
|
// +build rpctest lowscrypt
|
2020-01-18 01:19:27 +03:00
|
|
|
|
|
|
|
package btcwallet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/btcsuite/btcwallet/snacl"
|
|
|
|
"github.com/btcsuite/btcwallet/waddrmgr"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// Instruct waddrmgr to use the cranked down scrypt parameters when
|
|
|
|
// creating new wallet encryption keys. This will speed up the itests
|
|
|
|
// considerably.
|
|
|
|
fastScrypt := waddrmgr.FastScryptOptions
|
|
|
|
keyGen := func(passphrase *[]byte, config *waddrmgr.ScryptOptions) (
|
|
|
|
*snacl.SecretKey, error) {
|
|
|
|
|
|
|
|
return snacl.NewSecretKey(
|
|
|
|
passphrase, fastScrypt.N, fastScrypt.R, fastScrypt.P,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
waddrmgr.SetSecretKeyGen(keyGen)
|
|
|
|
}
|