Computing SHA1 with ASP.NET Core
问题 I've got a ASP.NET 5 RC1 (soon to be ASP.NET Core) Web Application project. It needs to compute SHA1 hashes. Various SHA1 subclasses are available and build under DNX 4.5.1, but there doesn't seem to be any available implementation under DNX Core 5.0. Do I have to add a reference to bring that code in, or is it simply not available for .NET Core yet? According to this article: .NET Core consists of a set of libraries, called “CoreFX”, and a small, optimized runtime, called “CoreCLR”. Sure