Registry / crypto / tiny-aes-c

tiny-aes-c

JSON →
library2019-07-31vcpkgunverified

Small portable AES128/192/256 in C

vcpkg install tiny-aes-c
INSTALL
IMPORT
SIG · TINY-AES-C
T
tiny-aes-c
cryptocppv2019-07-31
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

aes.h
✓ #include <aes.h>

Encrypt data using AES-128 ECB mode

#include "aes.h" #include <stdio.h> int main() { uint8_t key[16] = {0}; uint8_t plaintext[16] = {0}; uint8_t ciphertext[16]; struct AES_ctx ctx; AES_init_ctx(&ctx, key); AES_ECB_encrypt(&ctx, plaintext); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2019-07-31latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
18 hits · last 30 days
node
16
Resources

No resource links recorded.

tiny-aes-c — pip install tiny-aes-c · libregistry