This repository implements keccak256
in Swift, based off of the implementation written by coruus.
This library is built with the consideration of keeping it easy to include in your projects.
The keccak256.swift
package can be easily imported into your project using the swift package manager
.
dependencies: [
.package(url: "https://github.com/yeeth/keccak256.swift.git", from: "0.1.0"),
],
targets: [
.target(name: "MyTarget", dependencies: ["keccak256"]),
]
// @todo
- Dean Eigenmann - decanus
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details