#
hashing-algorithms
Here are 64 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
Oct 10, 2020 - C++
Penetration Testing and Hacking CTF's Swiss Army Knife with: Reverse Shell Handling - Encoding/Decoding - Encryption/Decryption - Cracking Hashes / Hashing
reverse-shell
pentesting
ctf
hashing-algorithms
ctf-tools
encryption-decryption
encoder-decoder
cracking-hashes
hacking-tools
pentest-tools
penetration-testing-tools
swiss-army-knife
-
Updated
Jun 5, 2021 - PHP
A cryptographic library
secret-sharing
elliptic-curve-diffie-hellman
hashing-algorithms
encryption-algorithms
public-key-cryptography
message-authentication-code
cryptographic-library
-
Updated
Jul 29, 2021 - C
SHA-256 algorithm implementation (С/С++)
c
hashing
cross-platform
cpp
hash-functions
hash
sha2
sha256
hashing-algorithm
hashing-algorithms
sha256sum
sha256-hash
hashing-strings
-
Updated
Aug 8, 2020 - 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 21, 2021 - 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.
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
Apr 18, 2021 - PHP
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#
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++
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
Jun 8, 2021 - TypeScript
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 17, 2021 - Java
Find similar images in the directory by aHash/dHash/pHash.
-
Updated
Sep 28, 2020 - C#
computer-science
algorithms
graph-algorithms
bit-manipulation
data-structures
sorting-algorithms
computational-geometry
dynamic-programming
hashing-algorithms
search-algorithms
numerical-optimization
greedy-algorithms
numerical-analysis
string-algorithms
divide-and-conquer
algorithms-and-data-structures
algorithmic-toolbox
cpp20
data-structures-and-algorithms
mathematical-algorithms
-
Updated
Jul 24, 2021 - C++
This library contains 4 cryptographic algorithms.
-
Updated
May 21, 2019 - C
An experimental hashing algorithm for optical/quantum computers based on Toffoli and Fredkin gates.
-
Updated
Sep 9, 2020 - Python
Find out which hashing algorithm was used to generate hex hash string from your input
-
Updated
May 11, 2018 - JavaScript
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
Mar 19, 2021 - 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
A file-based malware removal tool 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
Oct 7, 2020 - C#
CLI tool to ensure files in different directories are the same
-
Updated
Jul 21, 2021 - Go
What I learned from Data Structures and Algorithms Specialization on Coursera.
graph-algorithms
linear-programming
network-flow
binary-search-tree
dynamic-programming
hashing-algorithms
minimum-spanning-trees
greedy-algorithms
disjoint-sets
de-bruijn-graphs
burrows-wheeler-transform
divide-and-conquer
suffix-tree
suffix-array
eulerian-path
knuth-morris-pratt
disjoint-unions
satisfiability-problem
np-completeness
-
Updated
Oct 25, 2020 - C++
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.