Uh oh!
There was an error while loading. Please reload this page.
Bump cipher crate to v0.3.0-pre.3 - #205
Merged
Merged
Conversation
MemberAuthor
Hmmm, this is strange... tests failing with Same thing is happening with the |
tarcieri added a commit
to RustCrypto/traits
that referenced
this pull request
Dec 30, 2020
This reverts the implementation of `SeekNum::from_block_byte` which was merged as part of #435. I'm not exactly sure what the issue is and it's somewhat difficult to debug in that it's code that involves both generics and macros causing an error as part of any failure in a long chain of checked arithmetic, which I'm trying to debug from the context of a concrete stream cipher impl (both `chacha20` and `salsa20`) where it's operating over a generic type. The error manifests as `OverflowError`: RustCrypto/stream-ciphers#205 (comment) This commit reverts to the previous implementation, which is at least much simpler.
tarcieri added a commit
to RustCrypto/traits
that referenced
this pull request
Dec 30, 2020
This reverts the implementation of `SeekNum::from_block_byte` which was merged as part of #435. I'm not exactly sure what the issue is and it's somewhat difficult to debug in that it's code that involves both generics and macros causing an error as part of any failure in a long chain of checked arithmetic, which I'm trying to debug from the context of a concrete stream cipher impl (both `chacha20` and `salsa20`) where it's operating over a generic type. The error manifests as `OverflowError`: RustCrypto/stream-ciphers#205 (comment) This commit reverts to the previous implementation, which is at least much simpler.
tarcieriforce-pushed
the
cipher/v0.3.0-pre.2
branch
from
December 30, 2020 04:19
500579b to
46a9ddaComparetarcieri
commented
Dec 30, 2020
MemberAuthor
Reverted the changes to |
Implements the changes from: RustCrypto/traits#435 Unfortunately there's a circular dependency with `aes`, which now pulls in `ctr`, so the tests which depend on AES are failing. The plan is to land these changes first, then update the `block-ciphers` repository, then circle back and update the `aes` crate dependencies used in this repo.
tarcieriforce-pushed
the
cipher/v0.3.0-pre.2
branch
from
December 30, 2020 04:21
46a9dda to
00d6f05Comparecipher crate to v0.3.0-pre.2cipher crate to v0.3.0-pre.3tarcieri
commented
Dec 30, 2020
MemberAuthor
The remaining failures are all due to the circular dependency relationship between Going to go ahead and merge, update |
tarcieri added a commit
that referenced
this pull request
Dec 30, 2020
This commit completes working through upgrading the `cipher` crate with circular dependencies between `aes` and `ctr`. Now that RustCrypto/block-ciphers#217 it's possible to complete the `cipher` crate upgrade started in #205. All tests are now passing again.
tarcieri added a commit
that referenced
this pull request
Dec 30, 2020
This commit completes working through upgrading the `cipher` crate with circular dependencies between `aes` and `ctr`. Now that RustCrypto/block-ciphers#217 it's possible to complete the `cipher` crate upgrade started in #205. All tests are now passing again.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements the changes from:
RustCrypto/traits#435
Unfortunately there's a circular dependency with
aes, which now pulls inctr, so the tests which depend on AES are failing.The plan is to land these changes first, then update the
block-ciphersrepository, then circle back and update theaescrate dependencies used in this repo.