Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mpurland/SwiftMD5
A pure Swift implementation of MD5
https://github.com/mpurland/SwiftMD5
Last synced: 7 days ago
JSON representation
A pure Swift implementation of MD5
- Host: GitHub
- URL: https://github.com/mpurland/SwiftMD5
- Owner: mpurland
- License: bsd-3-clause
- Created: 2016-03-28T20:05:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-27T09:44:28.000Z (7 months ago)
- Last Synced: 2024-12-03T02:45:17.427Z (9 days ago)
- Language: Swift
- Size: 14.6 KB
- Stars: 12
- Watchers: 2
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - SwiftMD5 - A pure Swift implementation of MD5. (Security / Encryption)
- awesome-ios-star - SwiftMD5 - A pure Swift implementation of MD5. (Security / Encryption)
README
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Build Status](https://travis-ci.org/mpurland/SwiftMD5.svg?branch=master)](https://travis-ci.org/mpurland/SwiftMD5)
![Swift 3.0.x](https://img.shields.io/badge/Swift-3.0.x-orange.svg)SwiftMD5
========SwiftMD5 is a pure Swift implementation for the MD5 algorithm.
Usage
-----```swift
import SwiftMD5"The quick brown fox jumps over the lazy dog".md5
// "9e107d9d372bb6826bd81d3542a419d6"
```Usage for raw bytes
-------------------
```swift
let bytes = [Byte]("The quick brown fox jumps over the lazy dog".utf8)
// md5 outputs a 16-byte digestlet encodedBytes: [Byte] = md5(bytes)
// [158, 16, 125, 157, 55, 43, 182, 130, 107, 216, 29, 53, 66, 164, 25, 214]
// Each byte would normally be encoded to a padded hexadecimal in a string
// 9e107d9d372bb6826bd81d3542a419d6
```Setup
-----To add SwiftMD5 to your application:
**Using Carthage**
- Add SwiftMD5 to your Cartfile
- Run `carthage update`
- Drag the relevant copy of SwiftMD5 into your project.
- Expand the Link Binary With Libraries phase
- Click the + and add SwiftMD5
- Click the + at the top left corner to add a Copy Files build phase
- Set the directory to `Frameworks`
- Click the + and add SwiftMD5**Using Git Submodules**
- Clone SwiftMD5 as a submodule into the directory of your choice
- Run `git submodule init -i --recursive`
- Drag `SwiftMD5.xcodeproj` into your project tree as a subproject
- Under your project's Build Phases, expand Target Dependencies
- Click the + and add SwiftMD5
- Expand the Link Binary With Libraries phase
- Click the + and add SwiftMD5
- Click the + at the top left corner to add a Copy Files build phase
- Set the directory to `Frameworks`
- Click the + and add SwiftMD5License
=======SwiftMD5 is released under the BSD license.