ziglet-primality 0.1.1

Implementation of primality tests for multi-precision numbers using crypto-bigint
Documentation
1
2
3
4
5
6
7
8
// Copyright (c) Jeffrey Hohenstein <jeffrey.hohenstein@gmail.com>
//
// All rights reserved.

//! Miller Rabin Composite Test
//!
//! This test offers a probabilistic test for whether a (potentially) large number is composite.
pub mod miller_rabin;