-
Notifications
You must be signed in to change notification settings - Fork 313
Kura passwords encryption
Salvatore Coppola edited this page Jan 12, 2022
·
1 revision
Kura passwords are encrypted with sha256 and encoded in base64 format.
Here is an example of how to do it in linux shell:
echo -ne $(printf "admin" | sha256sum | awk '{print }' | sed -e 's|..|\\x&|g') | base64
User Documentation: https://eclipse-kura.github.io/kura/. Found a problem? Open a new issue or start a discussion.