diff --git a/src/deobfuscate.rs b/src/deobfuscate.rs index 8cf6172..703bc7b 100644 --- a/src/deobfuscate.rs +++ b/src/deobfuscate.rs @@ -197,11 +197,16 @@ impl Deobfuscator { } /// True when the underlying DeobfData had a valid sig fn extracted. + /// Exposed for consumers that want to short-circuit cipher streams + /// without invoking `deobfuscate_sig` and observing the error. + #[allow(dead_code)] pub fn has_sig(&self) -> bool { self.has_sig } /// True when the underlying DeobfData had a valid nsig fn extracted. + /// Exposed for consumers that want to short-circuit throttled URLs. + #[allow(dead_code)] pub fn has_nsig(&self) -> bool { self.has_nsig }