mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-20 10:39:01 +01:00
12 lines
297 B
Go
12 lines
297 B
Go
|
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
|
||
|
)
|