1// Copyright (c) Jeffrey Hohenstein <jeffrey.hohenstein@gmail.com>
2//
3// All rights reserved.
45//! Miller Rabin Composite Test
6//!
7//! This test offers a probabilistic test for whether a (potentially) large number is composite.
8pub mod miller_rabin;