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.
- Host: GitHub
- URL: https://github.com/vars1ty/rhwid
- Owner: vars1ty
- License: mit
- Created: 2022-12-25T13:55:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-20T08:31:16.000Z (over 2 years ago)
- Last Synced: 2025-02-06T06:19:11.177Z (5 months ago)
- Topics: cargo, crate, hardware-id, hwid, library, rust, system
- Language: Rust
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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}");
}
```