stringencrypt 1.0.0

Official Rust client for the StringEncrypt.com Web API — generate polymorphic decryptors for many programming languages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Web API `command` parameter.
pub struct Command;

impl Command {
    /// Encrypt a string or raw bytes (`encrypt`).
    pub const ENCRYPT: &'static str = "encrypt";
    /// Activation code limits and demo vs full mode (`is_demo`).
    pub const IS_DEMO: &'static str = "is_demo";
    /// Engine version and supported languages (`info`).
    pub const INFO: &'static str = "info";
}