Conversation
|
@newpavlov one thing I noticed was the method names are inconsistent among the crates.
I'd suggest either standardizing on |
cb1fb19 to
aa5fc7e
Compare
|
I'd suggest |
|
Stream cipher initialization function takes both key and nonce, while block cipher takes only key. For example, |
|
@burdges we've used
Ok, makes sense |
Adds a method which accepts a slice for a key, similar to the methods in the `block-cipher` and `stream-cipher` crates.
aa5fc7e to
f86b4f2
Compare
|
For consistency with the other |
|
This was released in v0.3.1: https://docs.rs/aead/0.3.1/aead/trait.NewAead.html#method.new_varkey |
Adds a method which accepts a slice for a key, similar to the methods in the
block-cipherandstream-ciphercrates.