All Projects → henkmollema → Cryptohelper

henkmollema / Cryptohelper

Licence: mit
Standalone password hasher for ASP.NET Core using a PBKDF2 implementation.

Projects that are alternatives of or similar to Cryptohelper

Vue.js With Asp.net Core Sample
This provides a sample code using vue.js running on ASP.NET Core
Stars: ✭ 44 (-24.14%)
Mutual labels:  asp-net-core
Pocket Core
Official implementation of the Pocket Network Protocol
Stars: ✭ 50 (-13.79%)
Mutual labels:  crypto
Jesse
An advanced crypto trading bot written in Python
Stars: ✭ 1,038 (+1689.66%)
Mutual labels:  crypto
Gekko Strategies
Strategies to Gekko trading bot with backtests results and some useful tools.
Stars: ✭ 1,022 (+1662.07%)
Mutual labels:  crypto
Write Ups
📚 VoidHack CTF write-ups
Stars: ✭ 45 (-22.41%)
Mutual labels:  crypto
Dustedcodes
My personal website - an Open Source ASP.NET Core Blog built with Giraffe.
Stars: ✭ 50 (-13.79%)
Mutual labels:  asp-net-core
Cryptojs.swift
Cross-platform cryptographic functions in swift
Stars: ✭ 42 (-27.59%)
Mutual labels:  crypto
Aspnetcorenlog
ASP.NET Core NLog MS SQL Server PostgreSQL MySQL Elasticsearch
Stars: ✭ 54 (-6.9%)
Mutual labels:  asp-net-core
Opcuawebplatformunict
An ASP.NET Core web application exposing OPC UA Servers to non OPCUA-compliant clients with a REST interface
Stars: ✭ 49 (-15.52%)
Mutual labels:  asp-net-core
Opentelemetry Dotnet
The OpenTelemetry .NET Client
Stars: ✭ 1,037 (+1687.93%)
Mutual labels:  asp-net-core
Trading Vue Js
💹 Hackable charting lib for traders. You can draw literally ANYTHING on top of candlestick charts.
Stars: ✭ 1,021 (+1660.34%)
Mutual labels:  crypto
Hodl Ticker
💸 Cryptocurrency prices on CLI
Stars: ✭ 45 (-22.41%)
Mutual labels:  crypto
Eazebot
Free python/telegram bot for easy execution and surveillance of crypto trading plans on multiple exchanges.
Stars: ✭ 51 (-12.07%)
Mutual labels:  crypto
Quickapp
ASP.NET Core 3.1 / Angular 9 startup project template with complete login, user and role management. Plus other useful services for Quick Application Development
Stars: ✭ 1,023 (+1663.79%)
Mutual labels:  asp-net-core
Cryptocurrency Dashboard
Crypto Currency Dashboard Using Twitter 🐦 And Coinmarketcap 🚀 API
Stars: ✭ 54 (-6.9%)
Mutual labels:  crypto
Aspnetcoreidentityserver4resourceownerpassword
ASP.NET Core IdentityServer4 Resource Owner Flow Refresh token and custom user repository
Stars: ✭ 44 (-24.14%)
Mutual labels:  asp-net-core
Ravendb.identity
RavenDB Identity provider for ASP.NET Core. Let RavenDB manage your users and logins.
Stars: ✭ 50 (-13.79%)
Mutual labels:  asp-net-core
Electron.net Musicplayer Sample
Stars: ✭ 55 (-5.17%)
Mutual labels:  asp-net-core
Identityserver4.openadmin
Open Source Admin UI for IdentityServer4
Stars: ✭ 54 (-6.9%)
Mutual labels:  asp-net-core
Cryptex
Gemini, GDAX, Bitfinex, Poloniex, Binance, Kraken, Cryptopia, Koinex, BitGrail and CoinMarketCap cryptocurrency exchange API clients in Swift / iOS SDK. Check prices and account balances using Sample iOS app.
Stars: ✭ 51 (-12.07%)
Mutual labels:  crypto

CryptoHelper

🔑 Standalone password hasher for ASP.NET Core using a PBKDF2 implementation.


Windows Linux OS X
Build status Build Status Build Status

This utility provides a standalone password hasher for ASP.NET Core without a dependency on ASP.NET Identity. The passwords are hashed using the new Data Protection stack.


Download

CryptoHelper is available on NuGet.


Usage

using CryptoHelper;

// Hash a password
public string HashPassword(string password)
{
    return Crypto.HashPassword(password);
}

// Verify the password hash against the given password
public bool VerifyPassword(string hash, string password)
{
    return Crypto.VerifyHashedPassword(hash, password);
}
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].