/ macaroons / security.go
security.go
 1  package macaroons
 2  
 3  import "github.com/btcsuite/btcwallet/snacl"
 4  
 5  var (
 6  	// Below are the default scrypt parameters that are used when creating
 7  	// the encryption key for the macaroon database with snacl.NewSecretKey.
 8  	scryptN = snacl.DefaultN
 9  	scryptR = snacl.DefaultR
10  	scryptP = snacl.DefaultP
11  )