- Notifications
You must be signed in to change notification settings - Fork5.2k
One shot CFB#55480
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
One shot CFB#55480
Uh oh!
There was an error while loading.Please reload this page.
Conversation
ghost commentedJul 11, 2021
Note regarding the This serves as a reminder for when your PR is modifying a ref *.cs file and adding/modifying public APIs, to please make sure the API implementation in the src *.cs file is documented with triple slash comments, so the PR reviewers can sign off that change. |
ghost commentedJul 11, 2021
Tagging subscribers to this area:@bartonjs,@vcsjones,@krwq,@GrabYourPitchforks Issue DetailsThis implements CFB one shots. Some implementation notes:
Closes#2406
|
Uh oh!
There was an error while loading.Please reload this page.
...ries/System.Security.Cryptography.Cng/src/Internal/Cryptography/CngSymmetricAlgorithmCore.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
src/libraries/System.Security.Cryptography.Cng/src/System/Security/Cryptography/AesCng.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
...aries/System.Security.Cryptography.Primitives/ref/System.Security.Cryptography.Primitives.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
vcsjones commentedJul 12, 2021
Mono failures should be fixed by#55482. |
...stem/Security/Cryptography/AlgorithmImplementations/TripleDES/TripleDESCipherOneShotTests.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
src/libraries/System.Security.Cryptography.Algorithms/src/Resources/Strings.resx OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
src/libraries/System.Security.Cryptography.Cng/src/System/Security/Cryptography/AesCng.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
src/libraries/System.Security.Cryptography.Cng/src/System/Security/Cryptography/TripleDESCng.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
src/libraries/System.Security.Cryptography.Cng/src/System/Security/Cryptography/AesCng.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
...stem.Security.Cryptography.Primitives/src/System/Security/Cryptography/SymmetricAlgorithm.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
bartonjs commentedJul 12, 2021
Looks like all I had were a couple of nitpicky things. Nice work. |
bartonjs commentedJul 12, 2021
/azp run runtime-libraries-coreclr outerloop |
| Azure Pipelines successfully started running 1 pipeline(s). |
vcsjones commentedJul 12, 2021
Seems like Pipeline's NuGet feed is cranky. |
bartonjs commentedJul 13, 2021
The outerloop failures aren't related, just waiting on the Linux-Debug leg to finish. |
Uh oh!
There was an error while loading.Please reload this page.
This implements CFB one shots.
Some implementation notes:
AesCngandTripleDESCngone shots will throw if the key is persisted and the feedback size is other than 8. This limitation can be removed, if it is possible, when the linked issue is solved.ICryptoTransformCFB implementation. The CNG CFB128 /CFB64 persisted-key remain as-is (using CFB8).Closes#2406