├── README.md ├── gopher.xcworkspace └── contents.xcworkspacedata ├── gopher_decrypt ├── gopher_decrypt.xcodeproj │ └── project.pbxproj └── gopher_decrypt │ ├── main.m │ ├── sodium.h │ └── sodium │ ├── core.h │ ├── crypto_aead_chacha20poly1305.h │ ├── crypto_auth.h │ ├── crypto_auth_hmacsha256.h │ ├── crypto_auth_hmacsha512.h │ ├── crypto_auth_hmacsha512256.h │ ├── crypto_box.h │ ├── crypto_box_curve25519xsalsa20poly1305.h │ ├── crypto_core_hsalsa20.h │ ├── crypto_core_salsa20.h │ ├── crypto_core_salsa2012.h │ ├── crypto_core_salsa208.h │ ├── crypto_generichash.h │ ├── crypto_generichash_blake2b.h │ ├── crypto_hash.h │ ├── crypto_hash_sha256.h │ ├── crypto_hash_sha512.h │ ├── crypto_int32.h │ ├── crypto_int64.h │ ├── crypto_onetimeauth.h │ ├── crypto_onetimeauth_poly1305.h │ ├── crypto_pwhash_scryptsalsa208sha256.h │ ├── crypto_scalarmult.h │ ├── crypto_scalarmult_curve25519.h │ ├── crypto_secretbox.h │ ├── crypto_secretbox_xsalsa20poly1305.h │ ├── crypto_shorthash.h │ ├── crypto_shorthash_siphash24.h │ ├── crypto_sign.h │ ├── crypto_sign_ed25519.h │ ├── crypto_sign_edwards25519sha512batch.h │ ├── crypto_stream.h │ ├── crypto_stream_aes128ctr.h │ ├── crypto_stream_chacha20.h │ ├── crypto_stream_salsa20.h │ ├── crypto_stream_salsa2012.h │ ├── crypto_stream_salsa208.h │ ├── crypto_stream_xsalsa20.h │ ├── crypto_uint16.h │ ├── crypto_uint32.h │ ├── crypto_uint64.h │ ├── crypto_uint8.h │ ├── crypto_verify_16.h │ ├── crypto_verify_32.h │ ├── crypto_verify_64.h │ ├── export.h │ ├── randombytes.h │ ├── randombytes_salsa20_random.h │ ├── randombytes_sysrandom.h │ ├── runtime.h │ ├── utils.h │ ├── version.h │ └── version.h.in └── gopher_encrypt ├── gopher_encrypt.xcodeproj └── project.pbxproj └── gopher_encrypt ├── main.m ├── sodium.h └── sodium ├── core.h ├── crypto_aead_chacha20poly1305.h ├── crypto_auth.h ├── crypto_auth_hmacsha256.h ├── crypto_auth_hmacsha512.h ├── crypto_auth_hmacsha512256.h ├── crypto_box.h ├── crypto_box_curve25519xsalsa20poly1305.h ├── crypto_core_hsalsa20.h ├── crypto_core_salsa20.h ├── crypto_core_salsa2012.h ├── crypto_core_salsa208.h ├── crypto_generichash.h ├── crypto_generichash_blake2b.h ├── crypto_hash.h ├── crypto_hash_sha256.h ├── crypto_hash_sha512.h ├── crypto_int32.h ├── crypto_int64.h ├── crypto_onetimeauth.h ├── crypto_onetimeauth_poly1305.h ├── crypto_pwhash_scryptsalsa208sha256.h ├── crypto_scalarmult.h ├── crypto_scalarmult_curve25519.h ├── crypto_secretbox.h ├── crypto_secretbox_xsalsa20poly1305.h ├── crypto_shorthash.h ├── crypto_shorthash_siphash24.h ├── crypto_sign.h ├── crypto_sign_ed25519.h ├── crypto_sign_edwards25519sha512batch.h ├── crypto_stream.h ├── crypto_stream_aes128ctr.h ├── crypto_stream_chacha20.h ├── crypto_stream_salsa20.h ├── crypto_stream_salsa2012.h ├── crypto_stream_salsa208.h ├── crypto_stream_xsalsa20.h ├── crypto_uint16.h ├── crypto_uint32.h ├── crypto_uint64.h ├── crypto_uint8.h ├── crypto_verify_16.h ├── crypto_verify_32.h ├── crypto_verify_64.h ├── export.h ├── randombytes.h ├── randombytes_salsa20_random.h ├── randombytes_sysrandom.h ├── runtime.h ├── utils.h ├── version.h └── version.h.in /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/README.md -------------------------------------------------------------------------------- /gopher.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/main.m -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/core.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_auth.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_box.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_hash.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_int32.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_int64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_int64.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_pwhash_scryptsalsa208sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_pwhash_scryptsalsa208sha256.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_sign.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_sign_edwards25519sha512batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_sign_edwards25519sha512batch.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_stream.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_stream_aes128ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_stream_aes128ctr.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_uint16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_uint16.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_uint32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_uint32.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_uint64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_uint64.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_uint8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_uint8.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/export.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/randombytes.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/randombytes_salsa20_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/randombytes_salsa20_random.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/runtime.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/utils.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/version.h -------------------------------------------------------------------------------- /gopher_decrypt/gopher_decrypt/sodium/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_decrypt/gopher_decrypt/sodium/version.h.in -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/main.m -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/core.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_aead_chacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_aead_chacha20poly1305.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_auth.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_auth_hmacsha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_auth_hmacsha256.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_auth_hmacsha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_auth_hmacsha512.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_auth_hmacsha512256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_auth_hmacsha512256.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_box.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_box_curve25519xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_box_curve25519xsalsa20poly1305.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_core_salsa20.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_core_salsa208.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_generichash.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_hash.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_hash_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_hash_sha256.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_hash_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_hash_sha512.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_int32.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_int64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_int64.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_onetimeauth.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_pwhash_scryptsalsa208sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_pwhash_scryptsalsa208sha256.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_scalarmult.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_scalarmult_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_scalarmult_curve25519.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_secretbox.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_shorthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_shorthash.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_shorthash_siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_shorthash_siphash24.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_sign.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_sign_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_sign_ed25519.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_sign_edwards25519sha512batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_sign_edwards25519sha512batch.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_stream.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_stream_aes128ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_stream_aes128ctr.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_stream_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_stream_chacha20.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_stream_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_stream_salsa2012.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_stream_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_stream_salsa208.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_uint16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_uint16.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_uint32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_uint32.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_uint64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_uint64.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_uint8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_uint8.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_verify_16.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_verify_32.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/crypto_verify_64.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/export.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/randombytes.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/randombytes_salsa20_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/randombytes_salsa20_random.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/randombytes_sysrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/randombytes_sysrandom.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/runtime.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/utils.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/version.h -------------------------------------------------------------------------------- /gopher_encrypt/gopher_encrypt/sodium/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/gopher/HEAD/gopher_encrypt/gopher_encrypt/sodium/version.h.in --------------------------------------------------------------------------------