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
12
13
14
15
16
//! Official Rust client for the [StringEncrypt](https://www.stringencrypt.com) Web API.
//!
//! Configure a [`StringEncrypt`] client, then call [`StringEncrypt::encrypt_string`],
//! [`StringEncrypt::encrypt_file_contents`], or [`StringEncrypt::is_demo`].

mod command;
mod error_code;
mod language;
mod new_line;
mod string_encrypt;

pub use command::Command;
pub use error_code::ErrorCode;
pub use language::Language;
pub use new_line::NewLine;
pub use string_encrypt::{ApiResponse, HighlightArg, StringEncrypt};