Update for 02-02-22 15:00

This commit is contained in:
Tyler Perkins 2022-02-02 15:00:01 -05:00
parent 390f012fa9
commit f6b4a55fb3
4 changed files with 29 additions and 7 deletions

13
tech/Bloom_filter.wiki Normal file
View File

@ -0,0 +1,13 @@
= Bloom filter =
A bloom filter is a space efficient data structure that can test if an element
is part of a set *false positives are possible*, however false negatives are
not. Meaning it can return,
* Possibly in the set
* Definitly not in the set
== Implementation ==
* Simple [[hash_table]] set
*

View File

@ -24,6 +24,11 @@ Different ways to store and operate on data, with differing efficiency
* [[Heap]] * [[Heap]]
- [[Fibonacci_heap]] - [[Fibonacci_heap]]
== Probabilistic Data Structures ==
* [[Bloom_filter]]
== Common Algorithms == == Common Algorithms ==
=== Graph and Tree === === Graph and Tree ===

View File

@ -33,5 +33,3 @@ Derived requirements from this,

View File

@ -21,3 +21,9 @@
* password length is unlimited * password length is unlimited
* 128bit hash * 128bit hash
* Uses inner loop with 1000 iterations * Uses inner loop with 1000 iterations
* OpenBSD uses Blowfish based hash called Bcrypt
* Most secure unix hash/salt scheme
* uses 128bit salt to make 192bit hash value
* Use a shadow password file
* separate file with hash; different file with ID