From 05183c5348c2746d9bb1ccd3b4355a28ff02be2f Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Sun, 30 Jul 2017 00:55:18 -0600 Subject: [PATCH] Make Fq6 public. --- src/bls12_381/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bls12_381/mod.rs b/src/bls12_381/mod.rs index 6454877e9..28af9d8a0 100644 --- a/src/bls12_381/mod.rs +++ b/src/bls12_381/mod.rs @@ -11,6 +11,7 @@ mod tests; pub use self::fr::{Fr, FrRepr}; pub use self::fq::{Fq, FqRepr}; pub use self::fq2::Fq2; +pub use self::fq6::Fq6; pub use self::fq12::Fq12; pub use self::ec::{G1, G2, G1Affine, G2Affine, G1Prepared, G2Prepared, G1Uncompressed, G2Uncompressed, G1Compressed, G2Compressed};