Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
xAAL
Code
Python
Commits
426258b0
"...drng/git@gitlab.imt-atlantique.fr:iota-imt/goshimmer.git" did not exist on "48c40d80325f768680dfc58c2714188c1af1650a"
Commit
426258b0
authored
2 months ago
by
KERDREUX Jerome
Browse files
Options
Downloads
Patches
Plain Diff
Remove xaal.tools dependency
parent
12a8fba0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/tools/xaal/tools/keygen.py
+29
-5
29 additions, 5 deletions
apps/tools/xaal/tools/keygen.py
with
29 additions
and
5 deletions
apps/tools/xaal/tools/keygen.py
+
29
−
5
View file @
426258b0
"""
Tool to build a key pass for xAAL config file
"""
"""
Tool to build a key pass for xAAL config file
You can use it to get a key for xaal configuration file.
This script support piping.
$ echo xaal |xaal-keygen
"""
from
xaal.lib
import
tools
import
binascii
import
pysodium
def
pass2key
(
passphrase
:
str
)
->
bytes
:
"""
Generate key from passphrase using libsodium
"""
# This function is a cut / paste from xaal.lib.tools pass2key function.
# Check out this file for more information. This stuff avoid to import
# xaal.tools and messing w/ the xaal configuration file at the first
# install.
buf
=
passphrase
.
encode
(
"
utf-8
"
)
KEY_BYTES
=
pysodium
.
crypto_pwhash_scryptsalsa208sha256_SALTBYTES
# 32
salt
=
(
'
\00
'
*
KEY_BYTES
).
encode
(
'
utf-8
'
)
opslimit
=
pysodium
.
crypto_pwhash_scryptsalsa208sha256_OPSLIMIT_INTERACTIVE
memlimit
=
pysodium
.
crypto_pwhash_scryptsalsa208sha256_MEMLIMIT_INTERACTIVE
key
=
pysodium
.
crypto_pwhash_scryptsalsa208sha256
(
KEY_BYTES
,
buf
,
salt
,
opslimit
,
memlimit
)
return
key
def
main
():
try
:
temp
=
input
(
"
Please enter your passphrase:
"
)
key
=
tools
.
pass2key
(
temp
)
key
=
pass2key
(
temp
)
print
(
"
Cut & Paste this key in your xAAL config-file
"
)
print
(
"
key=%s
"
%
binascii
.
hexlify
(
key
).
decode
(
'
utf-8
'
))
print
(
"
key=%s
"
%
binascii
.
hexlify
(
key
).
decode
(
'
utf-8
'
))
except
KeyboardInterrupt
:
print
(
"
Bye Bye..
"
)
if
__name__
==
'
__main__
'
:
main
()
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