Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 452 Bytes

File metadata and controls

18 lines (13 loc) · 452 Bytes

hunter2

A super simple go package that validates if a desired password is in the top 100k most commonly used.

Installation

  1. go get github.com/justinwcooper/hunter2

Usage

validator := hunter2.New()

validator.isCommon("hunter2") // => true
validator.isNotCommon("3smVBU348P8qp") // => true

Acknowledgements