-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
updated the draft crypto principles to match today's cryptographic standards, and fixed grammatical issues #348
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the update @pUrGe12 , could you refer to the contributing guide to fix the tests
@@ -182,7 +184,7 @@ which is only used for the duration of the encrypted communication. | |||
This random session key is then encrypted using an asymmetric cipher and the recipient's private key. | |||
The plaintext data itself is encrypted with the session key. | |||
Then the entire bundle (encrypted session key and encrypted message) is all sent together. | |||
Both [TLS][tls] and S/MIME are common cryptosystems using hybrid cryptography. | |||
Both [TLS 1.3][tls] and S/MIME are common cryptosystems using hybrid cryptography today. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should not provide a version for TLS here, this may go out of date so it is better to not version it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ahh yes, I'll edit this properly. My bad, I'll fix my tests.
…character in the end, in accordance with the lint markdown test
okay I see the issue, lemme try again with a new PR. (ps, sorry about doing this again and again, I'm trying to get this right) |
Summary :
This is a fix for issue #346 which called for a revision of principles of cryptography section to match today's standards. The major changes have been listen in the next section.
Following the discussion on #347 I have added the changes in the draft and reverted the changes in the release file.
Description for the changelog :
I have made the following major changes.
Stream cipher examples, RC4 to ChaCha20 (because the RC4 algorithm has many vulnerabilities like biases in the key scheduling algorithm)
Updated with TLS version 1.3 being the recommended one
Updated with note on DES not being a standard, and added AEAD schemes.
Corrected spelling errors and other grammatical issues
Added link to the cryptographic storage cheat sheet.
Other info :