All Projects → jzelinskie → whirlpool

jzelinskie / whirlpool

Licence: BSD-3-Clause license
whirlpool cryptographic hashing library

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to whirlpool

api-version-2
Executium API Version 2 - A comprehensive trading system API which connects traders with dozens of exchanges. Currently in closed beta
Stars: ✭ 82 (+290.48%)
Mutual labels:  crypto
mrrcrypt
A command line encryption/decryption tool using an adaptive mirror field algorithm.
Stars: ✭ 41 (+95.24%)
Mutual labels:  crypto
krypta
Generating random bits, passwords, recovery phrases and Bitcoin private keys / addresses (including QR codes) from text seed and salt.
Stars: ✭ 18 (-14.29%)
Mutual labels:  crypto
covert
An encryption format offering better security, performance and ease of use than PGP. File a bug if you found anything where we are worse than our competition, and we will fix it.
Stars: ✭ 20 (-4.76%)
Mutual labels:  crypto
DEGEN
Distributing POAPs to DAOs in discord, twitter, and more.
Stars: ✭ 27 (+28.57%)
Mutual labels:  crypto
sodium
An wrapper for libsodium in golang
Stars: ✭ 54 (+157.14%)
Mutual labels:  crypto
price-prediction-bot
🔮 Run backtest over PancakeSwap and CandleGenie Prediction and place realtime bets - Trading Bot
Stars: ✭ 59 (+180.95%)
Mutual labels:  crypto
asherah
Asherah is a multi-language, cross-platform application encryption SDK
Stars: ✭ 46 (+119.05%)
Mutual labels:  crypto
HTML-Crypto-Currency-Chart-Snippets
💹 Simple HTML Snippets to create Tickers / Charts of Cryptocurrencies with the TradingView API 💹
Stars: ✭ 89 (+323.81%)
Mutual labels:  crypto
conan-openssl
[OBSOLETE] The recipe is now in https://github.com/conan-io/conan-center-index
Stars: ✭ 25 (+19.05%)
Mutual labels:  crypto
brapi
API ilimitada da Bovespa, moedas e crypto. Ganhe acesso aos dados de qualquer ação, moeda ou criptomoeda
Stars: ✭ 36 (+71.43%)
Mutual labels:  crypto
cryptosub
Track 170+ cryptocurrency subreddits, view most popular coins, activity trends, most frequent words, and more
Stars: ✭ 37 (+76.19%)
Mutual labels:  crypto
tvdatafeed
A simple TradingView historical Data Downloader
Stars: ✭ 189 (+800%)
Mutual labels:  crypto
RCIG Coordination Repo
A Coordination repo for all things Rust Cryptography oriented
Stars: ✭ 175 (+733.33%)
Mutual labels:  crypto
rich-uncle-pennybags-bot
A telegram bot for all of your crypto needs. Works over the bitfinex and coinmarketcap APIs
Stars: ✭ 15 (-28.57%)
Mutual labels:  crypto
widgets
💸 Web3 Payments with any token. DePay simplifies and improves Web3 Payments with the power of DeFi. Accept any token with on-the-fly conversion with state-of-the-art widgets.
Stars: ✭ 32 (+52.38%)
Mutual labels:  crypto
virgil-crypto-c
This library is designed to be small, flexible and convenient wrapper for a variety crypto algorithms. So it can be used in a small micro controller as well as in a high load server application.
Stars: ✭ 24 (+14.29%)
Mutual labels:  crypto
PancakeSwapBot
PancakeSwap prediction bot
Stars: ✭ 38 (+80.95%)
Mutual labels:  crypto
CryptoLogos
Hundreds of crypto logos simply named by their normalized contract address
Stars: ✭ 14 (-33.33%)
Mutual labels:  crypto
virgil-crypto
Virgil Crypto is a high-level cryptographic library that allows you to perform all necessary operations for secure storing and transferring data and everything required to become HIPAA and GDPR compliant. Crypto Library is written in C++, suitable for mobile and server platforms and supports bindings with: Swift, Obj-C, Java (Android), С#/.NET, …
Stars: ✭ 74 (+252.38%)
Mutual labels:  crypto

whirlpool.go

A whirlpool hashing library for go

Build status

Build Status

Setup

$ go get github.com/jzelinskie/whirlpool

Example

package main

import (
  "fmt"
  "github.com/jzelinskie/whirlpool"
)

func main() {
  w := whirlpool.New()
  text := []byte("This is an example.")
  w.Write(text)
  fmt.Println(w.Sum(nil))
}

Docs

Check out the gopkgdoc page, but there isn't much -- it works just like the other hashes in the standard library

Branches

  • master - stable, works like the hash libs in the corelib
  • trace - same code as master, but prints midstate values to stdout

license

Modified BSD License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].