Gonzalo Atienza

Results 4 issues of Gonzalo Atienza

Removed unnecessary orphaned line (self._len_ct += len(plaintext)) that would raise exception if it were not under the exception raised by the KeyError exception handling. try: key = kwargs.pop("key") except KeyError...

Bytes object must be decoded as str first. 'TypeError: can only concatenate str (not "bytes") to str'

How about adding these bindings to support these newer apis: ``` int crypto_box_easy(unsigned char *c, const unsigned char *m, unsigned long long mlen, const unsigned char *n, const unsigned char...

Recently thought about building this wrapper to simplify and harden the usage of newer [key exchange apis](https://libsodium.gitbook.io/doc/key_exchange) along the newer aead constructs: ``` crypto_kx_client_session_keys(unsigned char rx[crypto_kx_SESSIONKEYBYTES], unsigned char tx[crypto_kx_SESSIONKEYBYTES], const...