gpp_decrypt

gpp_decrypt is a library for decrypting cpasswords in Group Policy Preference files. You'll find this useful for a certain hackthebox machine as well. If you're looking for the standalone binary version, see gpp-decrypt

Usage

```rust extern crate gpp_decrypt;

fn main() { let enc = "YOURCPASSWORDHERE".tostring(); let result = gppdecrypt::gpp_decrypt(enc); println!("{}", result); } ```