PyTomCrypt icon indicating copy to clipboard operation
PyTomCrypt copied to clipboard

Python wrapper around LibTomCrypt

Results 12 PyTomCrypt issues
Sort by recently updated
recently updated
newest added

Bumps [mako](https://github.com/sqlalchemy/mako) from 0.7.3 to 1.2.2. Release notes Sourced from mako's releases. 1.2.2 Released: Mon Aug 29 2022 bug [bug] [lexer] Fixed issue in lexer where the regexp used to...

dependencies

I'm creating an AES cipher instance that I will use repeatedly, calling .set_iv() before each encryption session. Yet the tomcrypt.cipher.aes.**init** raises an error if I do not provide an iv....

We need to clarify when the user needs to hash data for RSA signing, and when tomcrypt will do it for them. Perhaps even going to far as to re-evaluating...

Should we store the default hash/saltlen for signing/encryption on the `rsa.Key` itself? E.g.: ``` key = tomcrypt.rsa.Key(1024, sign_hash='sha256') key.sign(content) # Will use `sha256`. ```

From @parke: > I switched from ctr mode to cbc mode, and got this error: > > tomcrypt.LibError: Invalid argument provided. > > I guess CBC mode needs the input...

Is there any plans to support installation on Windows? PIP fail with this error message: ``` cipher.obj : error LNK2019: unresolved external symbol _aes_desc referenced in function _initcipher build\lib.win32-2.7\tomcrypt\cipher.pyd :...

Use [SemVer](http://semver.org/) (like everyone should), and immediately bump to `1.0.0-dev` since I am working on backwards-incompatible changes. This will require abandoning the notion that 1.0.0 would be exposing the complete...

Due to what I believe to be changes to my compiler on OS X, the test vectors for the "kseed" cipher are failing, and the user should be warned that...

Currently, LibTomCrypt is compiled into tomcrypt/_core.so. In order for those functions to be accessible to the other Cython modules, we force the .so to be loaded in RTLD_GLOBAL mode. Unfortunately,...