1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Offline license rs
//!
//! **Offline license RS** license generator used for offline software license verification.

extern crate core;

pub use crate::license_key::LicenseKey;

pub mod adler32;
pub mod license_blacklist;
pub mod license_byte_check;
pub mod license_checksum;
pub mod license_key;
pub mod license_magic;
pub mod license_operator;
pub mod license_properties;
pub mod license_serializer;
mod magic;