iac-rs 0.0.7

🛰️ IAC Protocol for Inter and Intra Agents Communications.
// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use anyhow::{Result, anyhow};
use ed25519_compact::{KeyPair, PublicKey, Signature};
use tracing::{debug, error, instrument};

#[derive(Clone, Debug, PartialEq)]
pub struct Signer {
    keypair: KeyPair,
}

impl Signer {
    #[instrument(skip_all)]
    pub fn new(keypair: KeyPair) -> Self {
        debug!("🔐 Signer created");
        Self { keypair }
    }

    #[instrument(skip_all, fields(data_len = data.len()))]
    pub fn sign(&self, data: &[u8]) -> Result<Vec<u8>> {
        let signature = self.keypair.sk.sign(data, None);
        debug!(sig_len = signature.as_ref().len(), "✍️ Data signed");
        Ok(signature.to_vec())
    }

    pub fn verifying_key(&self) -> PublicKey {
        self.keypair.pk
    }
}

#[derive(Clone, Debug, PartialEq)]
pub struct Verifier {
    pub_keys: Vec<PublicKey>,
}

impl Verifier {
    #[instrument(skip_all)]
    pub fn new(pub_keys: Vec<PublicKey>) -> Self {
        debug!("🔍 Verifier initialized");
        Self { pub_keys }
    }

    #[instrument(skip_all)]
    pub fn register_key(&mut self, pk: PublicKey) {
        debug!("🔏 Registering new public key");
        self.pub_keys.push(pk);
    }

    #[instrument(skip_all, fields(data_len = data.len(), sig_len = sig.len()))]
    pub fn verify(&self, data: &[u8], sig: &[u8]) -> Result<()> {
        if sig.len() != 64 {
            error!("❌ Invalid signature length: {}", sig.len());
            return Err(anyhow!("Invalid signature length"));
        }

        let mut sig_array = [0u8; 64];
        sig_array.copy_from_slice(sig);
        let signature = Signature::new(sig_array);

        for pk in &self.pub_keys {
            if pk.verify(data, &signature).is_ok() {
                debug!("✅ Signature verified successfully");
                return Ok(());
            }
        }

        error!("❌ Signature verification failed");
        Err(anyhow!("Signature verification failed"))
    }
}

#[instrument]
pub fn generate_key() -> KeyPair {
    debug!("🔑 Generating new keypair");
    KeyPair::generate()
}

// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.