Skip to content

v0.7.0

Choose a tag to compare

@oritwoen oritwoen released this 31 Dec 09:48
· 43 commits to main since this release

0.7.0 is the next minor release.

πŸ‘€ Highlights

GPU acceleration and SHA256 chain analysis! πŸŽ‰

⚑ WebGPU Acceleration

Hardware-accelerated key generation using wgpu (#30). Massively parallel computation on GPU for supported transforms.

cargo build --release --features gpu

πŸ”— SHA256 Chain Analyzer

Detect keys generated using deterministic SHA256 chains (#31):

  • Iterated chains - key[n] = SHA256(key[n-1])
  • Indexed chains - key[n] = SHA256(seed || n)
  • Counter chains - key[n] = SHA256(seed || "n")

βœ… Upgrading

cargo install vuke

πŸ‘‰ Changelog

compare changes

πŸš€ Enhancements

  • gpu: Add wgpu-based GPU acceleration (#30)
  • analyze: Add SHA256 chain analyzer (#31)

❀️ Contributors