crypto-bigint 0.7.3

Pure Rust implementation of a big integer library which has been designed from the ground-up for use in cryptographic applications. Provides constant-time, no_std-friendly implementations of modern formulas using const generics.
Documentation
//! [`BoxedUint`] bitwise XOR operations.

use super::BoxedUint;
use crate::{BitXor, BitXorAssign, CtOption};

impl BoxedUint {
    /// Computes bitwise `a ^ b`.
    #[inline(always)]
    #[must_use]
    pub fn bitxor(&self, rhs: &Self) -> Self {
        Self::map_limbs(self, rhs, crate::limb::Limb::bitxor)
    }

    /// Perform wrapping bitwise `XOR`.
    ///
    /// There's no way wrapping could ever happen.
    /// This function exists so that all operations are accounted for in the wrapping operations
    #[must_use]
    pub fn wrapping_xor(&self, rhs: &Self) -> Self {
        self.bitxor(rhs)
    }

    /// Perform checked bitwise `XOR`, returning a [`CtOption`] which `is_some` always
    #[must_use]
    pub fn checked_xor(&self, rhs: &Self) -> CtOption<Self> {
        CtOption::some(self.bitxor(rhs))
    }
}

impl BitXor for BoxedUint {
    type Output = Self;

    fn bitxor(self, rhs: Self) -> BoxedUint {
        self.bitxor(&rhs)
    }
}

impl BitXor<&BoxedUint> for BoxedUint {
    type Output = BoxedUint;

    fn bitxor(self, rhs: &BoxedUint) -> BoxedUint {
        Self::bitxor(&self, rhs)
    }
}

impl BitXor<BoxedUint> for &BoxedUint {
    type Output = BoxedUint;

    fn bitxor(self, rhs: BoxedUint) -> BoxedUint {
        self.bitxor(&rhs)
    }
}

impl BitXor<&BoxedUint> for &BoxedUint {
    type Output = BoxedUint;

    fn bitxor(self, rhs: &BoxedUint) -> BoxedUint {
        self.bitxor(rhs)
    }
}

impl BitXorAssign for BoxedUint {
    fn bitxor_assign(&mut self, other: Self) {
        *self = Self::bitxor(self, &other);
    }
}

impl BitXorAssign<&BoxedUint> for BoxedUint {
    fn bitxor_assign(&mut self, other: &Self) {
        *self = Self::bitxor(self, other);
    }
}

#[cfg(test)]
mod tests {
    use crate::U128;

    #[test]
    fn checked_xor_ok() {
        let result = U128::ZERO.checked_xor(&U128::ONE);
        assert_eq!(result.unwrap(), U128::ONE);
    }

    #[test]
    fn overlapping_xor_ok() {
        let result = U128::ZERO.wrapping_xor(&U128::ONE);
        assert_eq!(result, U128::ONE);
    }
}