sui_crypto/
bls12381.rs

1#[derive(Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)]
2pub struct Bls12381PrivateKey([u8; Self::LENGTH]);
3
4impl Bls12381PrivateKey {
5    /// The length of an bls12381 private key in bytes.
6    pub const LENGTH: usize = 32;
7}