Alicja Kario
Alicja Kario
for testing SCT from [RFC 6962](https://tools.ietf.org/html/rfc6962) we need to have rudimentary support for sending the extension defined for it --- This change is [](https://reviewable.io/reviews/tomato42/tlslite-ng/133)
This pull request automatically fixes all occurrences of the following issue: Issue type: [Prefer `format()` over string interpolation operator](https://www.quantifiedcode.com/app/issue_class/4ACGxFj1) Issue details: [https://www.quantifiedcode.com/app/project/gh:tomato42:tlslite-ng?groups=code_patterns/%3A4ACGxFj1](https://www.quantifiedcode.com/app/project/gh:tomato42:tlslite-ng?groups=code_patterns/%3A4ACGxFj1) To adjust the commit message or the actual...
Implement Maximum Fragment Length Notification, also known as max_fragment_length, from [RFC 6066](http://tools.ietf.org/html/rfc6066)
So, sometimes the work goes too well ;), and all the next actions for a project are exhausted before there's time for scheduled project review. It would be nice to...
Both Gitlab CI and Github Actions allow having tasks that depend on each-other: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions#dependencies-between-jobs It would be nice to have ability to: 1. prepare work for N workers in one...
As far as I can tell, `python-jose` supports PKCS#1 v1.5 for key transport: https://github.com/mpdavis/python-jose/blob/99ec142374a6eb98e32be5b8cdfd72508fd404d4/docs/jwe/index.rst#supported-key-management-algorithms and: https://github.com/mpdavis/python-jose/blob/99ec142374a6eb98e32be5b8cdfd72508fd404d4/tests/test_jwe.py#L84-L97 at the same time, pyca/cryptography doesn't guarantee side-channel safety of their decryption API: https://github.com/pyca/cryptography/issues/5510...
Use mutation testing to verify if the existing test coverage is good enough. Options: * [cosmic-ray](https://github.com/sixty-north/cosmic-ray) ([docs](https://cosmic-ray.readthedocs.io/en/latest/quickstart.html)) (see also https://github.com/sixty-north/cosmic-ray/issues/484) * [mutmut](https://github.com/boxed/mutmut/)
A lot of documentation are comments, not documentation strings – they should be changed. Most documentation strings don't actually document what the different arguments are and what the expected outputs...
https://safecurves.cr.yp.to/ is outdated, there are complete point addition and doubling formulas: https://eprint.iacr.org/2015/1060 we should use them to protect against bugs in special case handling
As the code isn't using constant-time algorithms, to make comparisons between different scalar multiplication algorithms meaningful, we need to benchmark the exact same operations (same private keys, same messages, and...