-
Notifications
You must be signed in to change notification settings - Fork 216
digest v0.10 release #478
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
Comments
Some additional items I'd like to at least discuss:
|
As I noted here, it's probably worth to release digest v0.10 without the blanket impl of |
I definitely agree with delaying adding a That said, I think adding a blanket impl is a semver breaking change. It can potentially introduce new conflicts with impls that previously worked. My suggestion would be to postpone it until digest v0.11. |
Shouldn't it be handled by the orphan rules? The stream cipher trait will be implemented on impl<R: XofReaderCore> XofReader for XofReaderCoreWrapper<R> { .. }
impl<R: StreamCipherCore> StreamCipher for XofReaderCoreWrapper<R> { .. } It would mean that core XOF reader types would have to implement both |
Aah okay, yeah that might work out |
Going to close this issue since most entries are completed. I opened #510 for discussion on the |
I have added the question regarding potential removal of the |
From discussions about the DSA implementation, I noticed this shortcoming of the Should this perhaps be picked up for this release as well? |
Checking in on this... it'd be really good to get another release out. I can take a look at addressing #545 unless you have plans to @newpavlov |
Updating the Right now I want to finish |
Resolved in #819. |
Uh oh!
There was an error while loading. Please reload this page.
Features to be implemented before release:
CoreWrapper
type aliases forUpdateCore
and other traits to prevent block size duplication.Debug
onCoreWrapper
(e.g. via an additionalAlgName
trait?).block-padding
feature and forward it toblock-buffer
.Re-introduce aBlockInput
-like trait (i.e. a trait with only oneBlockSize
associated type/constant) to unifyUpdateCoreWrapper
andXofReaderCoreWrapper
? Think about potential implementation of the stream cipher trait for XOF readers.core_api
feature?DynDigest
improvements DynDigest requires alloc when it does not have to #545The text was updated successfully, but these errors were encountered: