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

https://github.com/brycx/checkpwn-lib

Library to interact with the HIBP API
https://github.com/brycx/checkpwn-lib

data-breach haveibeenpwned hibp password security

Last synced: 5 months ago
JSON representation

Library to interact with the HIBP API

Awesome Lists containing this project

README

        

## checkpwn-lib ![Tests](https://github.com/brycx/checkpwn-lib/workflows/Tests/badge.svg) ![Security Audit](https://github.com/brycx/checkpwn-lib/workflows/Security%20Audit/badge.svg) [![Documentation](https://docs.rs/checkpwn_lib/badge.svg)](https://docs.rs/checkpwn_lib/) [![Crates.io](https://img.shields.io/crates/v/checkpwn-lib.svg)](https://crates.io/crates/checkpwn-lib) [![Safety Dance](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
Library to interact with the [Have I Been Pwned](https://haveibeenpwned.com/) API.

See also the [checkpwn](https://github.com/brycx/checkpwn) CLI utility.

### Usage
```rust
use checkpwn_lib::{Password, check_password, check_account, CheckpwnError};

let password = Password::new("qwerty")?;
check_password(&password);

check_account("your_account", "your_api_key");
```

### Changelog

See [here](https://github.com/brycx/checkpwn-lib/releases).

### License
checkpwn-lib is licensed under the MIT license. See the `LICENSE` file for more information.