summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2020-01-24 19:11:28 +0100
committerGitHub <noreply@github.com>2020-01-24 19:11:28 +0100
commit5e66d4385fa834ded033074f0625524c5b68bc86 (patch)
treeb4f3695dbb4dcec42ea35ad1211c8b34983400a0
parentUpdate aes.c (diff)
parentAdd library.properties (diff)
downloadtiny-AES-c-5e66d4385fa834ded033074f0625524c5b68bc86.tar
tiny-AES-c-5e66d4385fa834ded033074f0625524c5b68bc86.tar.gz
tiny-AES-c-5e66d4385fa834ded033074f0625524c5b68bc86.tar.bz2
tiny-AES-c-5e66d4385fa834ded033074f0625524c5b68bc86.tar.lz
tiny-AES-c-5e66d4385fa834ded033074f0625524c5b68bc86.tar.xz
tiny-AES-c-5e66d4385fa834ded033074f0625524c5b68bc86.tar.zst
tiny-AES-c-5e66d4385fa834ded033074f0625524c5b68bc86.zip
-rw-r--r--library.properties11
1 files changed, 11 insertions, 0 deletions
diff --git a/library.properties b/library.properties
new file mode 100644
index 0000000..39082cd
--- /dev/null
+++ b/library.properties
@@ -0,0 +1,11 @@
+name=tiny-AES-c
+version=1.0.0
+author=kokke
+maintainer=kokke
+sentence=A small and portable implementation of the AES ECB, CTR and CBC encryption algorithms written in C.
+paragraph=You can override the default key-size of 128 bit with 192 or 256 bit by defining the symbols AES192 or AES256 in aes.h. The API is very simple. No padding is provided so for CBC and ECB all buffers should be multiples of 16 bytes.
+category=Data Processing
+url=https://github.com/kokke/tiny-AES-c
+repository=https://github.com/kokke/tiny-AES-c.git
+architectures=*
+includes=aes.h