crypto-simd 0.1.1

Crypto-oriented SIMD wrapper abstracting over multiple backends
Documentation
  • Coverage
  • 0%
    0 out of 31 items documented0 out of 20 items with examples
  • Size
  • Source code size: 22.47 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.48 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • cryptocorrosion/cryptocorrosion
    57 36 15
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • kazcw

Crypto-oriented SIMD abstractions

Design: - interface as close to RFC2366/packed_simd as practical - pluggable backends

Backends supported: - ppv_null: Emulated SIMD. Safe, portable. - ppv_lite86: x86 implementation using coresimd intrinsics, stable and fast to compile. - packed_simd: Support for future compatibility--can probably replace ppv_lite when it's eventually stable; in the meantime, offers an unstable SIMD backend for platforms ppv_lite doesn't support.

Experimental status

Initially I'm adding functionality as needed for my crypto implementations, so there will be random gaps in the interface. Eventually I will round out the feature set and define the available functionality in traits, to ensure that the backends support the same functionality.