Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
typescript
duniter
Commits
daac09ae
Commit
daac09ae
authored
5 years ago
by
Éloïs
Browse files
Options
Downloads
Patches
Plain Diff
[docs]
fix documentation on Scrypt parameters
parent
4ae26468
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/modules/keypair/index.ts
+5
-3
5 additions, 3 deletions
app/modules/keypair/index.ts
with
5 additions
and
3 deletions
app/modules/keypair/index.ts
+
5
−
3
View file @
daac09ae
...
@@ -34,17 +34,19 @@ export const KeypairDependency = {
...
@@ -34,17 +34,19 @@ export const KeypairDependency = {
},
},
{
{
value
:
"
--keyN <N>
"
,
value
:
"
--keyN <N>
"
,
desc
:
"
Scrypt `N` parameter. Defaults to 4096.
"
,
desc
:
"
Scrypt `N` CPU/memory cost parameter. Must be a power of 2. Defaults to 4096.
"
,
parser
:
parseInt
,
parser
:
parseInt
,
},
},
{
{
value
:
"
--keyr <r>
"
,
value
:
"
--keyr <r>
"
,
desc
:
"
Scrypt `N` parameter. Defaults to 16.
"
,
desc
:
"
Scrypt `r` The blocksize parameter, which fine-tunes sequential memory read size and performance. Defaults to 16.
"
,
parser
:
parseInt
,
parser
:
parseInt
,
},
},
{
{
value
:
"
--keyp <p>
"
,
value
:
"
--keyp <p>
"
,
desc
:
"
Scrypt `
N`
parameter. Defaults to 1.
"
,
desc
:
"
Scrypt `
p` Parallelization
parameter. Defaults to 1.
"
,
parser
:
parseInt
,
parser
:
parseInt
,
},
},
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment