Coder Social home page Coder Social logo

pbkdf2's Introduction

pbkdf2 License Alire crate GitHub release GitHub Workflow Status

This is a PBKDF2 algorithm implemented in Ada, tested against RFC6070 test vectors. Currently PBKDF2_HMAC_SHA_1, PBKDF2_HMAC_SHA_256 and PBKDF2_HMAC_SHA_512 are implemented using respective hmac, sha{1,2} crates. It is easy to use the generic interface to define new PBKDF2 functions for other hash functions.

pbkdf2's People

Contributors

antonmeep avatar

Stargazers

 avatar

Watchers

 avatar  avatar

pbkdf2's Issues

Extremely slow due to the underlying SHA implementation

Because this seems to be extremely slow compared, to say, OpenSSL. While clearly it would benefit from optimizations similar to what fastpbkdf2 uses, biggest bottleneck seems to be GNAT.SHA* modules. Ideally, I would prefer to have a separate crate for sha and hmac that would implement these algorithms in a platform-independent, portable and hopefully faster manner.

Example of a simple benchmark on 2^10 iterations:

Implementation Time (s)
PBKDF2 5.527577500
OpenSSL 1.494409900

Mark the package as Pure, Preelaborate

Because of the internal dependency on GNAT.SHA*, PBKDF2 package cannot be marked as Pure, Preelaborate. This is a great shame since cryptography functions are inherently Pure (same function called with the same parameters will always return same result) and don't usually have any initialization needed that would affect elaboration order.
Only solution - use an external sha and hmac implementation, as per #1

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.