/keccak256.swift

Pure swift keccak256 implementation

Primary LanguageSwiftMIT LicenseMIT

keccak256.swift

⚠️ EARLY STAGES, WORK IN PROGRESS ⚠️

Build Status License

This repository implements keccak256 in Swift, based off of the implementation written by coruus.

Getting Started

This library is built with the consideration of keeping it easy to include in your projects.

Import

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"]),
]

Usage

// @todo

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details