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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
typescript
duniter
Commits
32d0c76a
Commit
32d0c76a
authored
5 years ago
by
Baptiste Lemoine
Browse files
Options
Downloads
Patches
Plain Diff
#1120
- :text: - fix doc variables descriptions for scrypt
Signed-off-by:
Baptiste Lemoine
<
contact@cipherbliss.com
>
parent
e28c3335
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
+11
-3
11 additions, 3 deletions
app/modules/keypair/index.ts
with
11 additions
and
3 deletions
app/modules/keypair/index.ts
+
11
−
3
View file @
32d0c76a
...
...
@@ -31,9 +31,17 @@ export const KeypairDependency = {
cliOptions
:
[
{
value
:
'
--salt <salt>
'
,
desc
:
'
Salt to generate the keypair
'
},
{
value
:
'
--passwd <password>
'
,
desc
:
'
Password to generate the keypair
'
},
{
value
:
'
--keyN <N>
'
,
desc
:
'
Scrypt `N` parameter. Defaults to 4096.
'
,
parser
:
parseInt
},
{
value
:
'
--keyr <r>
'
,
desc
:
'
Scrypt `N` parameter. Defaults to 16.
'
,
parser
:
parseInt
},
{
value
:
'
--keyp <p>
'
,
desc
:
'
Scrypt `N` parameter. Defaults to 1.
'
,
parser
:
parseInt
},
{
value
:
'
--keyN <N>
'
,
desc
:
'
Scrypt `N` CPU/memory cost parameter. Must be a power of 2. Defaults to 4096.
'
,
parser
:
parseInt
},
{
value
:
'
--keyr <r>
'
,
desc
:
'
Scrypt `r` The blocksize parameter, which fine-tunes sequential memory read size and performance. Defaults to 16.
'
,
parser
:
parseInt
},
{
value
:
'
--keyp <p>
'
,
desc
:
'
Scrypt `p` Parallelization parameter. Defaults to 1.
'
,
parser
:
parseInt
},
{
value
:
'
--keyprompt
'
,
desc
:
'
Force to use the keypair given by user prompt.
'
},
{
value
:
'
--keyfile <filepath>
'
,
...
...
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