├── LICENSE ├── README.md ├── crypto └── aead │ ├── aes256gcm │ ├── crypto_aead_aes256gcm.go │ └── crypto_aead_aes256gcm_test.go │ ├── chacha20poly1305 │ ├── crypto_aead_chacha20poly1305.go │ └── crypto_aead_chacha20poly1305_test.go │ ├── chacha20poly1305ietf │ ├── crypto_aead_chacha20poly1305_ietf.go │ └── crypto_aead_chacha20poly1305_ietf_test.go │ ├── crypto_aead.go │ ├── crypto_aead_aes256gcm.go │ ├── crypto_aead_aes256gcm_test.go │ └── xchacha20poly1305ietf │ ├── crypto_aead_xchacha20poly1305_ietf.go │ └── crypto_aead_xchacha20poly1305_ietf_test.go ├── cryptoaead ├── crypto_aead_aes256gcm.go └── crypto_aead_aes256gcm_test.go ├── cryptoauth ├── crypto_auth.go ├── hmacsha256 │ └── authHMAC256Api.go └── hmacsha512 │ ├── authHMAC512Api.go │ └── cp │ └── hmacHMACSHA512.go ├── cryptobox ├── crypto_box.go ├── crypto_box_easy.go ├── crypto_box_seal.go └── crypto_box_seal_test.go ├── cryptogenerichash └── crypto_generichash.go ├── cryptohash └── crypto_hash.go ├── cryptokdf └── crypto_kdf.go ├── cryptosecretbox ├── crypto_secretbox.go └── crypto_secretbox_easy.go ├── cryptosign └── crypto_sign.go ├── cryptostream ├── crypto_stream.go ├── crypto_stream_chacha20.go ├── crypto_stream_salsa20.go ├── crypto_stream_salsa2012.go ├── crypto_stream_salsa208.go ├── crypto_stream_xchacha20.go └── crypto_stream_xsalsa20.go ├── randombytes └── randombytes.go ├── scalarmult └── crypto_scalarmult.go ├── sodium ├── core.go ├── runtime.go ├── utils.go ├── version.go └── version_test.go └── support ├── error.go └── support.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/README.md -------------------------------------------------------------------------------- /crypto/aead/aes256gcm/crypto_aead_aes256gcm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/aes256gcm/crypto_aead_aes256gcm.go -------------------------------------------------------------------------------- /crypto/aead/aes256gcm/crypto_aead_aes256gcm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/aes256gcm/crypto_aead_aes256gcm_test.go -------------------------------------------------------------------------------- /crypto/aead/chacha20poly1305/crypto_aead_chacha20poly1305.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/chacha20poly1305/crypto_aead_chacha20poly1305.go -------------------------------------------------------------------------------- /crypto/aead/chacha20poly1305/crypto_aead_chacha20poly1305_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/chacha20poly1305/crypto_aead_chacha20poly1305_test.go -------------------------------------------------------------------------------- /crypto/aead/chacha20poly1305ietf/crypto_aead_chacha20poly1305_ietf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/chacha20poly1305ietf/crypto_aead_chacha20poly1305_ietf.go -------------------------------------------------------------------------------- /crypto/aead/chacha20poly1305ietf/crypto_aead_chacha20poly1305_ietf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/chacha20poly1305ietf/crypto_aead_chacha20poly1305_ietf_test.go -------------------------------------------------------------------------------- /crypto/aead/crypto_aead.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/crypto_aead.go -------------------------------------------------------------------------------- /crypto/aead/crypto_aead_aes256gcm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/crypto_aead_aes256gcm.go -------------------------------------------------------------------------------- /crypto/aead/crypto_aead_aes256gcm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/crypto_aead_aes256gcm_test.go -------------------------------------------------------------------------------- /crypto/aead/xchacha20poly1305ietf/crypto_aead_xchacha20poly1305_ietf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/xchacha20poly1305ietf/crypto_aead_xchacha20poly1305_ietf.go -------------------------------------------------------------------------------- /crypto/aead/xchacha20poly1305ietf/crypto_aead_xchacha20poly1305_ietf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/crypto/aead/xchacha20poly1305ietf/crypto_aead_xchacha20poly1305_ietf_test.go -------------------------------------------------------------------------------- /cryptoaead/crypto_aead_aes256gcm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptoaead/crypto_aead_aes256gcm.go -------------------------------------------------------------------------------- /cryptoaead/crypto_aead_aes256gcm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptoaead/crypto_aead_aes256gcm_test.go -------------------------------------------------------------------------------- /cryptoauth/crypto_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptoauth/crypto_auth.go -------------------------------------------------------------------------------- /cryptoauth/hmacsha256/authHMAC256Api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptoauth/hmacsha256/authHMAC256Api.go -------------------------------------------------------------------------------- /cryptoauth/hmacsha512/authHMAC512Api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptoauth/hmacsha512/authHMAC512Api.go -------------------------------------------------------------------------------- /cryptoauth/hmacsha512/cp/hmacHMACSHA512.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptoauth/hmacsha512/cp/hmacHMACSHA512.go -------------------------------------------------------------------------------- /cryptobox/crypto_box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptobox/crypto_box.go -------------------------------------------------------------------------------- /cryptobox/crypto_box_easy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptobox/crypto_box_easy.go -------------------------------------------------------------------------------- /cryptobox/crypto_box_seal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptobox/crypto_box_seal.go -------------------------------------------------------------------------------- /cryptobox/crypto_box_seal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptobox/crypto_box_seal_test.go -------------------------------------------------------------------------------- /cryptogenerichash/crypto_generichash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptogenerichash/crypto_generichash.go -------------------------------------------------------------------------------- /cryptohash/crypto_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptohash/crypto_hash.go -------------------------------------------------------------------------------- /cryptokdf/crypto_kdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptokdf/crypto_kdf.go -------------------------------------------------------------------------------- /cryptosecretbox/crypto_secretbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptosecretbox/crypto_secretbox.go -------------------------------------------------------------------------------- /cryptosecretbox/crypto_secretbox_easy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptosecretbox/crypto_secretbox_easy.go -------------------------------------------------------------------------------- /cryptosign/crypto_sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptosign/crypto_sign.go -------------------------------------------------------------------------------- /cryptostream/crypto_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptostream/crypto_stream.go -------------------------------------------------------------------------------- /cryptostream/crypto_stream_chacha20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptostream/crypto_stream_chacha20.go -------------------------------------------------------------------------------- /cryptostream/crypto_stream_salsa20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptostream/crypto_stream_salsa20.go -------------------------------------------------------------------------------- /cryptostream/crypto_stream_salsa2012.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptostream/crypto_stream_salsa2012.go -------------------------------------------------------------------------------- /cryptostream/crypto_stream_salsa208.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptostream/crypto_stream_salsa208.go -------------------------------------------------------------------------------- /cryptostream/crypto_stream_xchacha20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptostream/crypto_stream_xchacha20.go -------------------------------------------------------------------------------- /cryptostream/crypto_stream_xsalsa20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/cryptostream/crypto_stream_xsalsa20.go -------------------------------------------------------------------------------- /randombytes/randombytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/randombytes/randombytes.go -------------------------------------------------------------------------------- /scalarmult/crypto_scalarmult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/scalarmult/crypto_scalarmult.go -------------------------------------------------------------------------------- /sodium/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/sodium/core.go -------------------------------------------------------------------------------- /sodium/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/sodium/runtime.go -------------------------------------------------------------------------------- /sodium/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/sodium/utils.go -------------------------------------------------------------------------------- /sodium/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/sodium/version.go -------------------------------------------------------------------------------- /sodium/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/sodium/version_test.go -------------------------------------------------------------------------------- /support/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/support/error.go -------------------------------------------------------------------------------- /support/support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoKillers/libsodium-go/HEAD/support/support.go --------------------------------------------------------------------------------