Code Monkey home page Code Monkey logo

python-hkdf's Introduction

HKDF - HMAC Key Derivation Function

This module implements the HMAC Key Derivation function, defined at

http://tools.ietf.org/html/draft-krawczyk-hkdf-01

There are two interfaces: a functional interface, with separate extract and expand functions as defined in the draft RFC, and a wrapper class for these functions.

Functional interface

To use the functional interface, pass the pseudorandom key generated by hmac_extract([salt], [input key material]) to hmac_expand(...). salt should be a random, non-secret, site-specific string, but may be set to None. See section 3.1 of the HKDF draft for more details.

In addition to the PRK output by hmac_extract(), hmac_expand() takes an info argument, which permits generating multiple keys based on the same PRK, and a length argument, which defines the number of bytes of output key material to generate. length must be less than or equal to 255 time the block size, in bytes, of the hash function being used. See section 3.2 of the HKDF draft for more information on using the info argument.

The hash function to use can be specified for both hmac_extract() and hmac_expand() as the hash kw argument, and defaults to SHA-512 as implemented by the hashlib module. It must be the same for both extracting and expanding.

Example:

from binascii import unhexlify
prk = hkdf_extract(unhexlify(b"8e94ef805b93e683ff18"), b"asecretpassword")
key = hkdf_expand(prk, b"context1", 16)

Hkdf wrapper class

To use the wrapper class, instantiate the Hkdf() class with a salt, input key material, and optionally, a hash function. Note that the default hash function for the wrapper class is SHA-256, which differs from the default for the functional interface. You may then call expand([info], [length]) on the Hkdf instance to generate output key material:

kdf = Hkdf(unhexlify(b"8e94ef805b93e683ff18"), b"asecretpassword", hash=hashlib.sha512)
key = kdf.expand(b"context1", 16)

Changelog

  • 0.0.3 – Move documentation from module docstring to README.rst
  • 0.0.2 – Python 3.3, 3.4 support
  • 0.0.1 – Initial release

Please report any bugs at

https://www.github.com/casebeer/python-hkdf

python-hkdf's People

Contributors

casebeer avatar webmaster128 avatar

Watchers

James Cloos avatar

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.