macro_rules! require_valid_license {
($license_path:expr) => { ... };
($license_path:expr, $key_path:expr) => { ... };
}👎Deprecated since 0.2.0:
Use load_license! macro or licenz-policy crate for enforcement
Expand description
DEPRECATED: Use load_license! instead, which returns a Result.
This macro calls std::process::exit(1) on failure, which is an enforcement
decision. The Security Witness Pattern recommends separating attestation
(this crate) from enforcement (licenz-policy crate).