Skip to content

alimogh/python-hmac

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

python-hmac

Title: A "keyed-hash message authentication code" implementation in pure python.

License: This code is in Public Domain or MIT License, choose a suitable one for you.

Description: This HMAC implementation is in accordance with RFC 2104 specification. User supplied "key" and "message" must be a Python Byte Object.

         Usage:
         
         from hmac import HMAC
         from hashlib import md5
         
         h = HMAC (b"key",b"The quick brown fox jumps over the lazy dog",md5)
         h.hexdigest() => outputs 80070713463e7749b90c2dc24911e275

About

A "keyed-hash message authentication code" (hmac) implementation in pure python.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%