Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.05 KB

README.md

File metadata and controls

51 lines (36 loc) · 1.05 KB

Brute

Brute is a package that generates combinations of various characters.

For example, Brute can generate the combinations for the set {a b c}:

Brute.generic(?a..?c, 1..3)

Will generate something similar to the following: a, b , c, ..., z, aa, ab, ..., zy, zz, ... aaa, aab, ..., zzy, zzz.

There is no order guarantee within set-length.

Since most functions in Brute return a stream, they can combined with other operations. For example, calculating a hash:

'abcdefghijkpqrstuvwxyzABCDEFGHIJKPQRSTUVWXYZ0123456789`~!@#$%^&*()_+{}:<>?"\'`'
|> Brute.generic(1..20)
|> Stream.map(fn str ->
  :crypto.hash(:sha, str) |> Base.encode16
end)

Installation

def deps do
  [{:brute, "~> 0.1.0"}]
end

If you are using Elixir 1.3 or lower you will also need to add brute to your applications.

def application do
  [ ... applications: [ ..., :brute ] ]
end

TODO

  • Benchmarks
  • Caching combinations