Skip to content

An implementation of RIPEMD-160 in Swift

License

Notifications You must be signed in to change notification settings

anquii/RIPEMD160

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RIPEMD160

Platform Swift Package Manager compatible License

An implementation of RIPEMD-160 in Swift. All credit goes to Martin R. for publishing the implemention here.

Platforms

  • macOS 10.15+
  • iOS 13+

Installation

Swift Package Manager

Add the following line to your Package.swift file:

.package(url: "https://github.com/anquii/RIPEMD160.git", from: "1.0.0")

...or integrate with Xcode via File -> Swift Packages -> Add Package Dependency... using the URL of the repository.

Usage

import RIPEMD160

let hash = RIPEMD160.hash(data: data)

License

RIPEMD160 is licensed under the terms of the MIT license. See the LICENSE file for more information.