vpncloud/src/crypto/mod.rs

11 lines
249 B
Rust
Raw Normal View History

2021-02-08 09:11:20 +00:00
// VpnCloud - Peer-to-Peer VPN
// Copyright (C) 2015-2021 Dennis Schwerdel
// This software is licensed under GPL-3 or newer (see LICENSE.md)
2021-02-08 16:30:58 +00:00
mod common;
2020-09-24 17:48:13 +00:00
mod core;
mod init;
mod rotate;
2021-02-08 16:30:58 +00:00
pub use common::*;
pub use self::core::{EXTRA_LEN, TAG_LEN};