tittof

tittof pushed to fish2 at tittof/FiSH-irssi

  • 6d554b6eeb experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 61efdcb026 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 61efdcb026 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 81e485c613 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 699a24196b Merge pull request #48 from tittof/master Fixes for getContactKey and deleteIniValue
  • 86f261a628 Merge pull request #45 from dogo42/master OpenSSL 1.1 compatibility, one bugfix
  • ab2d4a79bc Fix removing key in deleteIniValue deleteIniValue did not remove key if num_keys != 0 after using g_key_file_remove_key. (only happens if you used more than one key value pair in a group)
  • View comparison for these 9 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 81e485c613 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 4186a190e4 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 4186a190e4 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 8bf5582e4c experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 8bf5582e4c experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 80c48f6c5c experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 80c48f6c5c experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 6d5ac51a1e experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 6d5ac51a1e experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 9782d87d48 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 9782d87d48 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • a3cc01eb2f experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • a3cc01eb2f experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 563fec0c9f experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 563fec0c9f experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 628edd1247 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 628edd1247 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • a0a1f23b8c experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • a0a1f23b8c experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 6417570da6 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 6417570da6 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 645351c3b6 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 645351c3b6 experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • de4e5e862d experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • de4e5e862d experimental support for XSalsa20 with Poly1305 encryption This introduces a new authenticated encryption method using XSalsa20 with Poly1305 MAC instead of the old blowfish in ecb mode. It uses a random nonce in front of every message. The overhead for the nonce and the MAC is 40 Bytes. switch conversation to the new mode by using /setmethod anything. switch to old blowfish in ecb mode use /delmethod. Details: https://download.libsodium.org/libsodium/content/secret-key_cryptography/authenticated_encryption.html Changes to be committed: modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 6b21e3c1ab experimental support for XSalsa20 with Poly1305 encryption Also lay a first ground for a new key_from_password function that uses Argon2 instead of many SHA256. new file: src/Argon2.c new file: src/Argon2.h modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 6b21e3c1ab experimental support for XSalsa20 with Poly1305 encryption Also lay a first ground for a new key_from_password function that uses Argon2 instead of many SHA256. new file: src/Argon2.c new file: src/Argon2.h modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • 00a3f39b13 experimental support for XSalsa20 with Poly1305 encryption Also lay a first ground for a new key_from_password function that uses Argon2 instead of many SHA256. new file: src/Argon2.c new file: src/Argon2.h modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • 00a3f39b13 experimental support for XSalsa20 with Poly1305 encryption Also lay a first ground for a new key_from_password function that uses Argon2 instead of many SHA256. new file: src/Argon2.c new file: src/Argon2.h modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • c7f2f7dd31 experimental support for XSalsa20 with Poly1305 encryption Also lay a first ground for a new key_from_password function that uses Argon2 instead of many SHA256. new file: src/Argon2.c new file: src/Argon2.h modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • c7f2f7dd31 experimental support for XSalsa20 with Poly1305 encryption Also lay a first ground for a new key_from_password function that uses Argon2 instead of many SHA256. new file: src/Argon2.c new file: src/Argon2.h modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • af005bc69a experimental support for XSalsa20 with Poly1305 encryption Also lay a first ground for a new key_from_password function that uses Argon2 instead of many SHA256. new file: src/Argon2.c new file: src/Argon2.h modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

  • af005bc69a experimental support for XSalsa20 with Poly1305 encryption Also lay a first ground for a new key_from_password function that uses Argon2 instead of many SHA256. new file: src/Argon2.c new file: src/Argon2.h modified: src/CMakeLists.txt modified: src/FiSH.c modified: src/FiSH.h new file: src/XSalsa20Poly1305.c new file: src/XSalsa20Poly1305.h
  • d56e1cf927 new: experimental change from blowfish to XSalsa20Poly1305
  • View comparison for these 2 commits »

7 years ago

tittof pushed to fish2 at tittof/FiSH-irssi

7 years ago