https://github.com/ellectroid/sha-256-key-and-tag
SHA-256, HMAC-SHA-256, PBKDF2-HMAC-SHA-256
https://github.com/ellectroid/sha-256-key-and-tag
Last synced: 8 months ago
JSON representation
SHA-256, HMAC-SHA-256, PBKDF2-HMAC-SHA-256
- Host: GitHub
- URL: https://github.com/ellectroid/sha-256-key-and-tag
- Owner: ellectroid
- License: unlicense
- Created: 2023-11-17T23:23:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-17T23:38:30.000Z (over 2 years ago)
- Last Synced: 2025-02-17T16:51:51.981Z (over 1 year ago)
- Language: C++
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SHA-256-key-and-tag
SHA-256, HMAC-SHA-256, PBKDF2-HMAC-SHA-256
A recreational programming project that provides
Hash function: SHA-256
Hash-based message authentication tag: HMAC-SHA-256
Password-based key derivation function 2: PBKDF2-HMAC-SHA-256
Dependencies: NONE
Special properties:
HMAC & PBKDF2 require scratch buffer memory provided for them (memory use depends on length of inputs).
Memory buffer requirements:
HMAC: (64 + data length) bytes
PBKDF2: (200 + salt length) bytes
Includes small example program with references to online tests