Skip to content
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

salsa20: replace salsa20-core with ctr-derived buffering; MSRV 1.34+ #94

Merged
merged 1 commit into from
Jan 17, 2020

Conversation

tarcieri
Copy link
Member

This is pretty much the same PR as #81 was for chacha20.

The previously used buffering logic in the salsa20-core crate is complex, hard-to-audit, and slow:

https://github.com/RustCrypto/stream-ciphers/blob/6be62af/salsa20-core/src/lib.rs#L93

The main reason is because it tries to handle too many things at once, namely:

  • serializing the Salsa20 block function output as little endian bytes
  • implementing the stream-cipher APIs

This commit gets rid of salsa20-core as a dependency, replacing it with code derived from the ctr crate, but specialized to the Salsa20 use case.

Ideally this code could eventually be unified with the extremely similar code in the ctr crate and chacha20 crates, as much of it seems reusable.

For now though, I think it's probably better to keep the code in chacha20 separate from this code: the previous API was a major impediment in SIMD optimizations, and being able to refactor both the
buffering logic and the various block function implementations internally to a single crate is much easier than having to touch (and release) 3 different crates for such a change.

This crate doesn't have a SIMD backend, and there's no plans to add one, so using the simplest buffering logic possible probably makes sense.

As this was the last crate with a code dependency on salsa20-core, this commit also removes it, as it's no longer needed.

This is pretty much the same PR as #81 was for `chacha20`.

The previously used buffering logic in the `salsa20-core` crate is
complex, hard-to-audit, and slow:

https://github.com/RustCrypto/stream-ciphers/blob/6be62af/salsa20-core/src/lib.rs#L93

The main reason is because it tries to handle too many things at once,
namely:

- serializing the Salsa20 block function output as little endian bytes
- implementing the stream-cipher APIs

This commit gets rid of `salsa20-core` as a dependency, replacing it
with code derived from the `ctr` crate, but specialized to the Salsa20
use case.

Ideally this code could eventually be unified with the extremely similar
code in the `ctr` crate and `chacha20` crates, as much of it seems
reusable.

For now though, I think it's probably better to keep the code in
`chacha20` separate from this code: the previous API was a major
impediment in SIMD optimizations, and being able to refactor both the
buffering logic and the various block function implementations
internally to a single crate is much easier than having to touch
(and release) 3 different crates for such a change.

This crate doesn't have a SIMD backend, and there's no plans to add one,
so using the simplest buffering logic possible probably makes sense.

As this was the last crate with a code dependency on `salsa20-core`,
this commit also removes it, as it's no longer needed.
@tarcieri tarcieri merged commit b3dc397 into master Jan 17, 2020
@tarcieri tarcieri deleted the salsa20/remove-salsa20-core branch January 17, 2020 18:00
@tarcieri tarcieri mentioned this pull request Jan 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant