crypt_guard 1.4.2

CryptGuard is a post-quantum cryptography library with support for Kyber, Falcon, Dilithium in combination with AES and XChaCha20.
Documentation

pub mod archive;

pub mod zip_manager;

enum TargetType {
	Dir,
	File,
	Symlink,
}

impl TargetType {
	pub fn dir() -> Self {
		Self::Dir
	}
	pub fn file() -> Self {
		Self::File
	}
	pub fn symlink() -> Self {
		Self::Symlink
	}
}

struct Utils;