bug fixing and deploy and build diagnostics
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
// WIP mesh/transport protocol — suppress dead code warnings
|
||||
#![allow(dead_code)]
|
||||
//! Double Ratchet protocol for forward-secret mesh messaging.
|
||||
//!
|
||||
//! Implements the Signal protocol's Double Ratchet algorithm:
|
||||
@@ -13,10 +15,10 @@
|
||||
//! Reference: Signal Technical Documentation — Double Ratchet Algorithm
|
||||
|
||||
use super::crypto;
|
||||
use anyhow::{Context, Result};
|
||||
use anyhow::Result;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::collections::HashMap;
|
||||
use zeroize::{Zeroize, ZeroizeOnDrop};
|
||||
use zeroize::Zeroize;
|
||||
|
||||
/// HKDF info string for root key + chain key derivation.
|
||||
const KDF_RK_INFO: &[u8] = b"ArchyRatchetRK";
|
||||
|
||||
Reference in New Issue
Block a user