1
0
Fork 0
mirror of https://github.com/lightningnetwork/lnd.git synced 2025-03-15 11:59:26 +01:00
lnd/macaroons/security.go

12 lines
297 B
Go
Raw Normal View History

package macaroons
import "github.com/btcsuite/btcwallet/snacl"
var (
// Below are the default scrypt parameters that are used when creating
// the encryption key for the macaroon database with snacl.NewSecretKey.
scryptN = snacl.DefaultN
scryptR = snacl.DefaultR
scryptP = snacl.DefaultP
)