26 lines
2.6 KiB
TOML
26 lines
2.6 KiB
TOML
description = "Ada Keystore"
|
|
long-description = "\n[](http://jenkins.vacs.fr/job/Bionic-Ada-Keystore/)\n[](http://jenkins.vacs.fr/job/Bionic-Ada-Keystore/)\n[](https://codecov.io/gh/stcarrez/ada-keystore)\n\n# Overview\n\nAda Keystore is a tool and library to store information in secure wallets\nand protect the stored information by encrypting the content.\nIt is necessary to know one of the wallet password to access its content.\nAda Keystore can be used to safely store passwords, credentials,\nbank accounts and even documents.\n\nWallets are protected by a master key using AES-256 and the wallet\nmaster key is protected by a user password.\nThe wallet defines up to 7 slots that identify\na password key that is able to unlock the master key. To open a wallet,\nit is necessary to unlock one of these 7 slots by providing the correct\npassword. Wallet key slots are protected by the user's password\nand the PBKDF2-HMAC-256 algorithm, a random salt, a random counter\nand they are encrypted using AES-256.\n\nValues stored in the wallet are protected by their own encryption keys\nusing AES-256. A wallet can contain another wallet which is then\nprotected by its own encryption keys and passwords (with 7 independent slots).\nBecause the child wallet has its own master key, it is necessary to known\nthe primary password and the child password to unlock the parent wallet\nfirst and then the child wallet.\n\n## Documents\n\n* [Ada Keystore Guide](https://ada-keystore.readthedocs.io/en/latest/) [PDF](https://github.com/stcarrez/ada-keystore/blob/master/docs/keystore-book.pdf)\n\n"
|
|
name = "keystoreada"
|
|
version = "1.1.0"
|
|
authors = ["Stephane.Carrez@gmail.com"]
|
|
licenses = "Apache-2.0"
|
|
maintainers = ["Stephane.Carrez@gmail.com"]
|
|
maintainers-logins = ["stcarrez"]
|
|
project-files = [".alire/keystoreada.gpr"]
|
|
tags = ["security", "storage", "nosql"]
|
|
|
|
[[actions]]
|
|
type = "post-fetch"
|
|
command = ["rm", "-f", "config.gpr"]
|
|
|
|
[[depends-on]]
|
|
utilada = "^2.1.0"
|
|
|
|
[gpr-externals]
|
|
BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
|
|
KEYSTORE_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
|
|
|
|
[origin]
|
|
url = "https://github.com/stcarrez/ada-keystore/archive/1.1.0.tar.gz"
|
|
hashes = ["sha512:d28d822c2c2d459f3dd44b720cbd63d07996b0169e0f106817d4b1f93c9b46a670f5c240ded32aeb2863934790b4670698bdbaa44cf49bf5cab4d4cddd561af6"]
|