{"id":14971352,"url":"https://github.com/jimbobbennett/circuitpython_hmac","last_synced_at":"2025-10-26T15:30:27.456Z","repository":{"id":55914019,"uuid":"245680374","full_name":"jimbobbennett/CircuitPython_HMAC","owner":"jimbobbennett","description":"HMAC (Keyed-Hashing for Message Authentication) CircuitPython module. Implements the HMAC algorithm as described by RFC 2104.","archived":false,"fork":false,"pushed_at":"2023-08-02T01:47:31.000Z","size":45,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-31T20:55:50.728Z","etag":null,"topics":["circuitpython"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jimbobbennett.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-03-07T17:59:30.000Z","updated_at":"2024-07-15T16:17:48.000Z","dependencies_parsed_at":"2022-08-15T09:20:27.288Z","dependency_job_id":"5668a0ab-176c-48f7-a412-26428cc6d44b","html_url":"https://github.com/jimbobbennett/CircuitPython_HMAC","commit_stats":{"total_commits":21,"total_committers":2,"mean_commits":10.5,"dds":0.04761904761904767,"last_synced_commit":"2944cbf9a863bf47d2dbc6ade4f89226b179c356"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimbobbennett%2FCircuitPython_HMAC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimbobbennett%2FCircuitPython_HMAC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimbobbennett%2FCircuitPython_HMAC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimbobbennett%2FCircuitPython_HMAC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jimbobbennett","download_url":"https://codeload.github.com/jimbobbennett/CircuitPython_HMAC/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238347896,"owners_count":19457012,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["circuitpython"],"created_at":"2024-09-24T13:45:04.463Z","updated_at":"2025-10-26T15:30:22.146Z","avatar_url":"https://github.com/jimbobbennett.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Introduction\n============\n\n.. image:: https://readthedocs.org/projects/circuitpython-hmac/badge/?version=latest\n    :target: https://circuitpython.readthedocs.io/projects/hmac/en/latest/\n    :alt: Documentation Status\n\n.. image:: https://img.shields.io/discord/327254708534116352.svg\n    :target: https://adafru.it/discord\n    :alt: Discord\n\n.. image:: https://github.com/jimbobbennett/CircuitPython_HMAC/workflows/Build%20CI/badge.svg\n    :target: https://github.com/jimbobbennett/CircuitPython_HMAC/actions\n    :alt: Build Status\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n    :alt: Code Style: Black\n\nHMAC (Keyed-Hashing for Message Authentication) Python module. Implements the HMAC algorithm as described by RFC 2104.\n\n\nDependencies\n=============\nThis driver depends on:\n\n* `Adafruit CircuitPython \u003chttps://github.com/adafruit/circuitpython\u003e`_\n* `Adafruit CircuitPython Hashlib \u003chttps://github.com/adafruit/Adafruit_CircuitPython_hashlib\u003e`_\n\nPlease ensure all dependencies are available on the CircuitPython filesystem.\nThis is easily achieved by downloading\n`the Adafruit library and driver bundle \u003chttps://circuitpython.org/libraries\u003e`_.\n\nInstalling from PyPI\n=====================\n\nOn supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from\nPyPI \u003chttps://pypi.org/project/circuitpython-hmac/\u003e`_. To install for current user:\n\n.. code-block:: shell\n\n    pip3 install circuitpython-hmac\n\nTo install system-wide (this may be required in some cases):\n\n.. code-block:: shell\n\n    sudo pip3 install circuitpython-hmac\n\nTo install in a virtual environment in your current project:\n\n.. code-block:: shell\n\n    mkdir project-name \u0026\u0026 cd project-name\n    python3 -m venv .env\n    source .env/bin/activate\n    pip3 install circuitpython-hmac\n\nUsage Example\n=============\n\nCreate a keyed hash for authenticating a message.\n\n.. code-block:: python\n\n    secret = \"secret\"\n    msg = \"message\"\n\n    key = hmac.new(secret, msg=msg, digestmod=hashlib.sha256).digest()\n\nContributing\n============\n\nContributions are welcome! Please read our `Code of Conduct\n\u003chttps://github.com/jimbobbennett/CircuitPython_HMAC/blob/master/CODE_OF_CONDUCT.md\u003e`_\nbefore contributing to help this project stay welcoming.\n\nDocumentation\n=============\n\nFor information on building library documentation, please check out `this guide \u003chttps://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1\u003e`_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjimbobbennett%2Fcircuitpython_hmac","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjimbobbennett%2Fcircuitpython_hmac","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjimbobbennett%2Fcircuitpython_hmac/lists"}