#
hashing-algorithms
Here are 40 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
Apr 15, 2020 - C
7
TheAdnan
commented
Oct 11, 2017
Just add a basic form validation for the input field, very simple.
Open
AJAX form
4
2
This is my second project about File Organization. It's all about Perfect Hashing Cichelli’s Algorithm.
-
Updated
Aug 17, 2019 - C#
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
Mar 13, 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++
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
Apr 24, 2020 - Java
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#
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
Oct 9, 2019 - 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
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
All the small cyrpto codes which i made during CSE1003
-
Updated
Apr 29, 2020 - Python
BitCent Blockchain Project
-
Updated
Mar 16, 2019 - Python
Implementing hashing algorithms SHA256 and MD5
-
Updated
Nov 14, 2018 - C
CMPE 273 Assignments, labs and quizzes, Fall'18
-
Updated
Jul 9, 2019 - Python
Important algorithmic concepts
-
Updated
Feb 7, 2019
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.