#
hashing-algorithms
Here are 44 public repositories matching this topic...
Advanced Hash Manipulation
hashing
bruteforce
hash
manipulation
hash-types
dictionary-attack
hashing-algorithms
bruteforce-attacks
password-cracking
hash-manipulation
dagon
-
Updated
Oct 14, 2019 - Python
A collection of classical algorithms and data-structures implementation in C++ for coding interview and competitive programming
c-plus-plus
algorithm
algorithms
graph-algorithms
mathematics
competitive-programming
data-structures
sorting-algorithms
computational-geometry
game-theory
tree-structure
combinatorics
dynamic-programming
coding-interviews
hashing-algorithms
greedy-algorithms
binary-search
number-theory
string-algorithms
backtracking-algorithm
-
Updated
Mar 6, 2020 - C++
A cryptographic library
secret-sharing
elliptic-curve-diffie-hellman
hashing-algorithms
encryption-algorithms
public-key-cryptography
message-authentication-code
cryptographic-library
-
Updated
Jul 31, 2020 - C
Open
AJAX form
4
TheAdnan
commented
Oct 11, 2017
Make this form use a jQuery AJAX call. Make the PR request to the hacktober
branch.
An optimized JavaScript implementation of the MurmurHash3 algorithm.
javascript
hashing
murmurhash3
hash-functions
hash
hashing-library
hashing-algorithm
murmurhash
floating-point
hashing-algorithms
hashing-speedup
floating-point-arithmetic
murmurhash-js
-
Updated
Aug 1, 2020 - JavaScript
This is my second project about File Organization. It's all about Perfect Hashing Cichelli’s Algorithm.
-
Updated
Aug 17, 2019 - C#
Laravel wrapper for common hashing algorithms used in web applications
hashing
laravel
cryptography
algorithm
base64
base64url
random-generation
blake2b
sha256
programmers
hashing-algorithms
blake2b-hash-algorithm
-
Updated
Aug 7, 2020 - PHP
MinMax Circular Sector Arc for External Plagiarism’s Heuristic Retrieval Stage code
nlp
information-retrieval
high-dimensional-data
python3
lsh
locality-sensitive-hashing
hashing-algorithms
approximate-nearest-neighbor-search
jaccard-similarity
minmax-algorithm
plagiarism-detection
external-plagiarism
heuristic-retrieval
hashing-speedup
scalable-similarity-search
-
Updated
Nov 2, 2017 - Python
Handy calculators for your browser.
-
Updated
Jul 30, 2020 - TypeScript
A GPU cracking hashed passwords library written in C++.
gpu
password-generator
opencl
bruteforce
cpp11
md5
sha1
cracking
dictionary-attack
hashing-algorithms
-
Updated
Mar 22, 2017 - C++
A .NET implementation of different non-cryptographic hashes.
hash-functions
hashing-library
hashing-algorithms
testing-framework
non-cryptographic-hash-functions
fast-algorithms
-
Updated
Jul 17, 2019 - C#
simple hash functions in go: a simple hash function implementing Horner's rule and a universal hash function implementing the Carter-Wegman method.
go
hashing
golang
hash-functions
hash
hashing-algorithm
hashing-algorithms
universal-hashing
universalhash
universal-hash
carter-wegman
homer-rule
homer-method
carter-wegman-method
-
Updated
Mar 22, 2017 - Go
Find out which hashing algorithm was used to generate hex hash string from your input
-
Updated
May 11, 2018 - JavaScript
Cryptographic hashing algorithms as a Java library with standard JCA adapters
java
hashing
library
cryptography
crypto
hash
md5
sha2
digest
cryptography-library
sha1
sha256
crypto-library
hashing-algorithms
ripemd160
tiger
messagedigest
cryptohash
-
Updated
Jun 23, 2020 - Java
Find similar images in the directory by aHash/dHash/pHash.
-
Updated
Jun 9, 2020 - C#
This library contains 4 cryptographic algorithms.
-
Updated
May 21, 2019 - C
A file-based antivirus that contains a list of MD5 hashes from known malware, compares them with a selected file, and determines if it's malware. The user then has the option to delete the file from the computer.
-
Updated
May 5, 2020 - C#
Hashing Algorithms in C++
-
Updated
May 23, 2020 - C++
Hashing and Colision Resolution in C
-
Updated
Jun 17, 2017 - C
-
Updated
Oct 20, 2018 - Java
labworkl of dsa course
-
Updated
Apr 12, 2019 - C
Repository Its sole purpose is to test various technologies, aiming at learning.
tree
ai
memory
oracle
merge
hash
binary-search-tree
red-black-tree
bubble
quick
busca
hashing-algorithms
avl
b-tree
biblioteca
grafo
arvore-avl
arvore-b
rubro-negra
ordenation
-
Updated
Jun 11, 2020 - C
Robinhood Hashing is an advanced hashing technique which is an improvement over elementary methods like linear probing, quadratic probing, and double-hashing.
-
Updated
Oct 21, 2018 - Java
BitCent Blockchain Project
-
Updated
Mar 16, 2019 - Python
Improve this page
Add a description, image, and links to the hashing-algorithms topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the hashing-algorithms topic, visit your repo's landing page and select "manage topics."
steps to reproduce
Write a loop, from 1 to 80000, each time add a random int to the max heap.
In theory it takes very little time(NlogN, N=80000, <1sec ), but the program does take a long time.
I'v also tested the BinaryHeap in https://github.com/SolutionsDesign/Algorithmia, it performs well, so it is probably due to the bad algorithm.