Skip to content

Instantly share code, notes, and snippets.

View zyxago's full-sized avatar

Zyxago zyxago

View GitHub Profile
@zyxago
zyxago / PasswdHasher.cs
Created November 19, 2021 21:00
Simple PasswdHasher
using System;
using System.Security.Cryptography;
namespace PasswdHasher
{
public static class PasswdHasher
{
private const int HASH_SIZE = 32;
private const int SALT_SIZE = 32;
private const int ITERATION = 20000;
@zyxago
zyxago / Explode.cs
Created March 9, 2019 11:58
Pixel Explosion of a texture
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PixelExplosion
{