An open API service indexing awesome lists of open source software.

https://github.com/vars1ty/rhwid

Rust basic HWID Grabbing with encryption support.
https://github.com/vars1ty/rhwid

cargo crate hardware-id hwid library rust system

Last synced: 3 months ago
JSON representation

Rust basic HWID Grabbing with encryption support.

Awesome Lists containing this project

README

        

# rHWID
Basic HWID Grabbing with encryption support.

## Usage Example
```rust
fn main () {
let hwid = hwid::get_hwid(Combinations::TotalMemBytes | Combinations::HostName, "my_encryption_key").expect("[ERROR] Failed fetching HWID!");
println!("{hwid}");
}
```