Skip to content

Generate hash digests using commonly available hash algorithms

License

Notifications You must be signed in to change notification settings

jordanbaird/HashGenerator

Repository files navigation

HashGenerator

A simple class for generating hash digests using commonly available hash algorithms.

Install

Add the following dependency to your Package.swift file:

.package(url: "https://github.com/jordanbaird/HashGenerator", from: "0.0.2")

Usage

Read the full documentation here

let generator = HashGenerator(using: .sha256)
let digest = generator.hash("Hello")
print(digest)
// Prints '185f8db32271fe25f561a6fc938b2e264306ec304eda518007d1764826381969'