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.

Usage

```rust extern crate gpp_decrypt;

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