pub fn fingerprint_signature(fp: &Fingerprint) -> StringExpand description
Free-function signature helper used by Fingerprint::signature.
Useful for callers that already have a borrowed Fingerprint
reference and want to compute the hash without invoking the
method (e.g. inside a closure where the borrow is shared).
ยงExample
use stygian_browser::fingerprint::{fingerprint_signature, Fingerprint};
let fp = Fingerprint::default();
assert_eq!(fp.signature(), fingerprint_signature(&fp));