Skip to content

Instantly share code, notes, and snippets.

@Rochet2
Rochet2 / SRP6CryptoHasher.cs
Last active December 27, 2024 05:53
SRP6 for TC in C#/csharp
using System;
using System.Security.Cryptography;
using System.Text;
using System.Numerics;
using System.Collections.Generic;
using System.Linq;
using System.Globalization;
public static class SRP6CryptoHasher {
private static readonly RNGCryptoServiceProvider rngCsp = new RNGCryptoServiceProvider();