rscrypto 0.1.0

Rust crypto with zero default deps: BLAKE3, Ed25519/X25519, hashes, MACs, KDFs, AEADs, and checksums with SIMD/ASM acceleration.
Documentation
use super::{
  BLOCK_LEN,
  kernels::{CompressBlocksFn, Sha384KernelId, compress_blocks_fn, required_caps},
};

define_sha_family_dispatch! {
  kernel_id: Sha384KernelId,
  compress_fn_ty: CompressBlocksFn,
  portable_kernel: Sha384KernelId::Portable,
  compress_fn: compress_blocks_fn,
  required_caps: required_caps,
  runtime_table: super::dispatch_tables::select_runtime_table,
  output_len: 48,
  word_bytes: 8,
  total_bits_ty: u128,
  length_offset: 112,
  h0: super::H0,
  compile_time: {
    hw: false,
    name: "portable",
    best: compress_blocks_fn(Sha384KernelId::Portable),
  },
}