Skip to content

Commit

Permalink
Optimize navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security committed Oct 11, 2019
1 parent 6f7beb3 commit 3623562
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions docs/README.md
@@ -1,20 +1,20 @@
# Table of Contents

* [Table of Contents](#table-of-contents)
* [Table of Contents](#table-of-contents) (you are here)
* [Getting Started](#getting-started)
* [CryptographyKey](#cryptographykey)
* [SodiumPlus Methods](#sodiumplus-methods)
* AEAD (XChaCha20-Poly1305)
* [AEAD (XChaCha20-Poly1305)](#aead)
* [crypto_aead_xchacha20poly1305_ietf_decrypt](#crypto_aead_xchacha20poly1305_ietf_decrypt)
* [crypto_aead_xchacha20poly1305_ietf_encrypt](#crypto_aead_xchacha20poly1305_ietf_encrypt)
* [crypto_aead_xchacha20poly1305_ietf_keygen](#crypto_aead_xchacha20poly1305_ietf_keygen)
* [Example for crypto_aead_xchacha20poly1305_ietf_*](#example-for-crypto_aead_xchacha20poly1305_ietf_)
* Shared-key authentication
* [Shared-key authentication](#shared-key-authentication)
* [crypto_auth](#crypto_auth)
* [crypto_auth_verify](#crypto_auth_verify)
* [crypto_auth_keygen](#crypto_auth_keygen)
* [Example for crypto_auth](#example-for-crypto_auth)
* Authenticated public-key encryption
* [Authenticated public-key encryption](#authenticated-public-key-encryption)
* [crypto_box](#crypto_box)
* [crypto_box_open](#crypto_box_open)
* [crypto_box_keypair](#crypto_box_keypair)
Expand All @@ -23,49 +23,49 @@
* [crypto_box_secretkey](#crypto_box_secretkey)
* [crypto_box_publickey_from_secretkey](#crypto_box_publickey_from_secretkey)
* [Example for crypto_box](#example-for-crypto_box)
* Sealed boxes (anonymous public-key encryption)
* [Sealed boxes (anonymous public-key encryption)](#sealed-boxes)
* [crypto_box_seal](#crypto_box_seal)
* [crypto_box_seal_open](#crypto_box_seal_open)
* [Example for crypto_box_seal](#example-for-crypto_box_seal)
* General-purpose cryptographic hash
* [General-purpose cryptographic hash](#general-purpose-cryptographic-hash)
* [crypto_generichash](#crypto_generichash)
* [crypto_generichash_init](#crypto_generichash_init)
* [crypto_generichash_update](#crypto_generichash_update)
* [crypto_generichash_final](#crypto_generichash_final)
* [crypto_generichash_keygen](#crypto_generichash_keygen)
* [Example for crypto_generichash](#example-for-crypto_generichash)
* Key derivation
* [Key derivation](#key-derivation)
* [crypto_kdf_derive_from_key](#crypto_kdf_derive_from_key)
* [crypto_kdf_keygen](#crypto_kdf_keygen)
* [Example for crypto_kdf](#example-for-crypto_kdf)
* Key exchange
* [Key exchange](#key-exchange)
* [crypto_kx_keypair](#crypto_kx_keypair)
* [crypto_kx_seed_keypair](#crypto_kx_seed_keypair)
* [crypto_kx_client_session_keys](#crypto_kx_client_session_keys)
* [crypto_kx_server_session_keys](#crypto_kx_server_session_keys)
* [Example for crypto_kx](#example-for-crypto_kx)
* Password-based key derivation
* [Password-based key derivation](#password-based-key-derivation)
* [crypto_pwhash](#crypto_pwhash)
* [Example for crypto_pwhash](#example-for-crypto_pwhash)
* Password hashing and storage
* [Password hashing and storage](#password-hashing-and-storage)
* [crypto_pwhash_str](#crypto_pwhash_str)
* [crypto_pwhash_str_needs_rehash](#crypto_pwhash_str_needs_rehash)
* [crypto_pwhash_str_verify](#crypto_pwhash_str_verify)
* [Example for crypto_pwhash_str](#example-for-crypto_pwhash_str)
* Scalar multiplication over Curve25519 (advanced)
* [Scalar multiplication over Curve25519 (advanced)](#scalar-multiplication-over-curve25519)
* [crypto_scalarmult](#crypto_scalarmult)
* [crypto_scalarmult_base](#crypto_scalarmult_base)
* [Example for crypto_scalarmult](#example-for-crypto_scalarmult)
* Shared-key authenticated encryption
* [Shared-key authenticated encryption](#shared-key-authenticated-encryption)
* [crypto_secretbox](#crypto_secretbox)
* [crypto_secretbox_open](#crypto_secretbox_open)
* [crypto_secretbox_keygen](#crypto_secretbox_keygen)
* [Example for crypto_secretbox](#example-for-crypto_secretbox)
* Short-input hashing
* [Short-input hashing](#short-input-hashing)
* [crypto_shorthash](#crypto_shorthash)
* [crypto_shorthash_keygen](#crypto_shorthash_keygen)
* [Example for crypto_shorthash](#example-for-crypto_shorthash)
* Digital signatures
* [Digital signatures](#digital-signatures)
* [crypto_sign](#crypto_sign)
* [crypto_sign_open](#crypto_sign_open)
* [crypto_sign_detached](#crypto_sign_detached)
Expand All @@ -76,7 +76,7 @@
* [crypto_sign_ed25519_sk_to_curve25519](#crypto_sign_ed25519_sk_to_curve25519)
* [crypto_sign_ed25519_pk_to_curve25519](#crypto_sign_ed25519_pk_to_curve25519)
* [Example for crypto_sign](#example-for-crypto_sign)
* Randomness
* [Randomness](#randomness)
* [randombytes_buf](#randombytes_buf)
* [randombytes_uniform](#randombytes_uniform)
* [Example for randombytes](#example-for-randombytes)
Expand Down

0 comments on commit 3623562

Please sign in to comment.