├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── abstract.md ├── chapter.json └── chapters ├── 00-intro.md ├── 01-quick-start.md ├── 02-random-data.md ├── 03-utilities-helpers.md ├── 04-secretkey-crypto.md ├── 05-publickey-crypto.md ├── 06-hashing.md ├── 07-password-hashing.md ├── 08-advanced.md └── 09-recipes.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/README.md -------------------------------------------------------------------------------- /abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/abstract.md -------------------------------------------------------------------------------- /chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapter.json -------------------------------------------------------------------------------- /chapters/00-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/00-intro.md -------------------------------------------------------------------------------- /chapters/01-quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/01-quick-start.md -------------------------------------------------------------------------------- /chapters/02-random-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/02-random-data.md -------------------------------------------------------------------------------- /chapters/03-utilities-helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/03-utilities-helpers.md -------------------------------------------------------------------------------- /chapters/04-secretkey-crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/04-secretkey-crypto.md -------------------------------------------------------------------------------- /chapters/05-publickey-crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/05-publickey-crypto.md -------------------------------------------------------------------------------- /chapters/06-hashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/06-hashing.md -------------------------------------------------------------------------------- /chapters/07-password-hashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/07-password-hashing.md -------------------------------------------------------------------------------- /chapters/08-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/08-advanced.md -------------------------------------------------------------------------------- /chapters/09-recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/pecl-libsodium-doc/HEAD/chapters/09-recipes.md --------------------------------------------------------------------------------