Giter Site home page Giter Site logo

shaperformanceevaluation's Introduction

CryptoKit is slower than CrytpoSwift

This is an example project to demonstrate that running SHA256 twice, as part of a simple Proof-of-Work(POW), is much slower using CryptoKit than CryptoSwift.

The POW is super simple, it performs SHA256 twice on some input data (seed), until the SHA256 twice hashing results in a digest meeting some target number of leading zeros in it.

let seed: Data // input
let targetNumberOfLeadingZeros = 16

// number of iterations until threshold `targetNumberOfLeadingZeros` is met.
var nonce: Int64 = 0

var powData: Data!

repeat {
    nonce += 1
    let unhashed = seed + fourBytesFrom(int: nonce)
    powData = sha256TwiceHasher.sha256sha256(of: unhashed)
} while powData.numberOfLeadingZeroBits < targetNumberOfLeadingZeros

return nonce 

CryptoSwift version 1.0.0 has been imported into the project using Carthage.

For the same test vectors using CryptoKit is around 40 - 80% slower than CryptoSwift.

Optimization flags

Currently using Fastest, Aggressive Optimizations and Optimize for Speed flags.

Why Carthage?

However I included the build of CryptoSwift using Carthage in Git. So you ought to be able to run it. At first I imported CryptoSwift using SPM, but runtime CryptoSwift was much slower using SPM. Maybe I did something wrong, but it seemed it did not get build using optimization flags.

shaperformanceevaluation's People

Contributors

sajjon avatar

Watchers

James Cloos avatar  avatar  avatar

Forkers

andiradulescu

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.