Skip to content

Instantly share code, notes, and snippets.

View npmuller's full-sized avatar

Nathan Muller npmuller

View GitHub Profile
@npmuller
npmuller / Program.cs
Created October 21, 2019 16:59
A simple C# program to generate a password hash and SALT that you can log into the SQL Server Reporting Services (SSRS) custom security sample found here: https://github.com/microsoft/Reporting-Services/tree/master/CustomSecuritySample. Simply enter a username and password, run, and insert the values into the UserAccounts.Users table generated i…
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Web.Security;
namespace GenerateUNandPW
{