Skip to content

Commit

Permalink
Add Rust PRNGs; update tree in README
Browse files Browse the repository at this point in the history
  • Loading branch information
John Saigle committed Jul 19, 2023
1 parent 4357de3 commit 28a0912
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 9 deletions.
34 changes: 26 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,29 @@ great! Your app is more secure than when you started.

### Wordlists

<!-- To update:
:r!tree wordlists
-->
```
wordlists
├── comments
│   ├── all
│   ├── derogatory
│   ├── security
│   └── todo
├── cosmossdk
│   ├── abci
│   ├── module-auth
│   ├── module-authz
│   ├── module-bank
│   ├── module-group
│   └── module-staking
├── cryptography
│   └── all
├── go
│   ├── all
│   ├── cryptography
│   ├── db-access
│   ├── deprecated
│   ├── err
│   └── randomness
Expand Down Expand Up @@ -75,15 +86,22 @@ wordlists
│   ├── object_serialization
│   ├── os_command_execution
│   └── string_formatting
└── rust
├── rust
│   ├── all
│   ├── clone
│   ├── panic-macros
│   ├── randomness
│   ├── resource-exhaustion
│   ├── slices
│   ├── unsafe
│   ├── unwrap
│   └── vectors
└── secrets
├── all
├── clone
├── panic-macros
├── resource-exhaustion
├── slices
├── unsafe
├── unwrap
└── vectors
├── api-keys
└── public-keys
13 directories, 61 files
```

## References
Expand Down
11 changes: 10 additions & 1 deletion wordlists/rust/all
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ as_chunks
as_chunks_mut
as_rchunks
as_rchunks_mut
as_simd
assert_eq!
as_simd
chunks
chunks_exact
chunks_exact_mut
Expand All @@ -21,6 +21,9 @@ expect
extern
flatten_mut
panic!
Pcg32
Pcg64
Pcg64Mcg
rchunks
rchunks_exact
rchunks_exact_mut
Expand All @@ -32,10 +35,13 @@ rsplit_array_mut
rsplit_array_ref
select_nth_unstable
select_nth_unstable_by
SmallRng
split_array_mut
split_array_ref
split_at
split_at_mut
SplitMix64
StepRng
swap
todo!
unimplemented!
Expand All @@ -45,3 +51,6 @@ unwrap
vec!
windows
with_capacity
XorShiftRng
Xoshiro256Plus
Xoshiro256PlusPlus
9 changes: 9 additions & 0 deletions wordlists/rust/randomness
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Pcg32
Pcg64
Pcg64Mcg
SmallRng
SplitMix64
StepRng
XorShiftRng
Xoshiro256Plus
Xoshiro256PlusPlus

0 comments on commit 28a0912

Please sign in to comment.