summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #201 from StarGate01/fix/platformio-buildHEADmasterkokke2021-12-221-11/+17
|\ | | | | Exclude tests from build in library.json for PlatformIO
| * Exclude tests from build in library.json for PlatfomIOChristoph Honal2021-12-191-11/+17
|/
* Merge pull request #189 from ilkondr/ilkondr/fix_includeskokke2021-02-161-0/+1
|\ | | | | include stddef.h for size_t - thanks @ilkondr
| * include stddef.hIlya Kondrashkin2021-02-161-0/+1
|/
* Update README.mdkokke2021-01-091-0/+1
|
* Update c-cpp.ymlkokke2021-01-091-1/+1
|
* Create c-cpp.ymlkokke2021-01-091-0/+24
|
* Update README.mdkokke2021-01-081-1/+1
|
* Update README.mdkokke2021-01-061-2/+2
|
* Update README.mdkokke2021-01-061-3/+3
|
* Merge pull request #173 from Youw/masterkokke2021-01-062-9/+9
|\ | | | | use size_t for buffer size and its indexes
| * use size_t for buffer size and its indexesIhor Dutchak2020-09-262-9/+9
| | | | | | | | | | | | | | | | - this allows using CBC/CTR with buffers larger than 4GB on 64bit systems; Closes: #172 Signed-off-by: Ihor Dutchak <ihor.youw@gmail.com>
* | Update README.mdkokke2021-01-061-0/+1
| |
* | Merge pull request #165 from jsiverskog/fix_warningkokke2021-01-051-7/+10
|\ \ | |/ |/| Fix compiler warning in CTR only mode
| * Fix compiler warning in CTR only modeJacob Siverskog2020-05-281-7/+10
| | | | | | | | | | | | | | | | | | | | Fixes the following warning: aes.c:98:22: warning: 'rsbox' defined but not used [-Wunused-const-variable=] 98 | static const uint8_t rsbox[256] = { | ^~~~~ With CBC = 0, ECB = 0 and CTR = 1.
* | Merge pull request #167 from k6dsp/patch-1kokke2020-07-011-6/+14
|\ \ | |/ |/| update cmakelists.txt to be able to use it in add_subdirectory()
| * update cmakelists.txt to be able to use it in add_subdirectory()k6dsp2020-06-301-6/+14
|/ | | | | - Remove reference to ASM language - advance minimum version of the cmake required as far version 2 is VERY outdated. - remove hardcoded folder name of "tiny-AES-c as target_include_directory which by some reason is PRIVATE and could not be used as add_subdirectory() in main project.
* Update README.mdkokke2020-03-301-1/+1
|
* removing commented-out call to printf...kokke2020-03-301-1/+0
|
* Update aes.hkokke2020-03-301-2/+2
|
* Update README.mdkokke2020-03-071-2/+3
|
* Update README.mdkokke2020-03-071-3/+3
|
* Merge pull request #157 from dmitrystu/optimized-loopkokke2020-03-071-18/+17
|\ | | | | loop optimization
| * loop optimizationDmitry2020-03-031-18/+17
|/
* Update README.mdkokke2020-02-111-1/+1
|
* Merge pull request #145 from acortelyou/arduino-lib-propskokke2020-01-241-0/+11
|\ | | | | Add metadata for Arduino Library Manager
| * Add library.propertiesAlex Cortelyou2019-07-311-0/+11
| |
* | Update aes.ckokke2020-01-241-1/+0
|/
* Update aes.ckokke2019-02-221-3/+3
| | | cosmetic: fixing whitespace / indentation
* Merge pull request #126 from torfinnberset/masterkokke2019-02-223-17/+17
|\ | | | | Const-qualify all read-only pointers
| * Update READMETorfinn Berset2019-02-211-6/+6
| |
| * Const-qualify all read-only pointersTorfinn Berset2019-02-212-11/+11
| |
* | Merge pull request #124 from torfinnberset/masterv1.0.0kokke2019-02-016-0/+113
|\| | | | | Conan recipe
| * Add check for AES key-size optionTorfinn Berset2019-01-311-0/+3
| |
| * Check if at least one encryption mode is selectedTorfinn Berset2019-01-311-3/+8
| |
| * Also try to compile C++ version of testTorfinn Berset2019-01-313-1/+7
| |
| * Remove Package author, and add UnlicenseTorfinn Berset2019-01-311-2/+3
| |
| * Add Conan package optionsTorfinn Berset2019-01-312-9/+37
| |
| * First version of Conan recipeTorfinn Berset2019-01-314-0/+70
|/
* Merge pull request #123 from rkeene/invcipher-not-ctrkokke2019-01-231-1/+2
|\ | | | | Also only define the Inv* family of functions if InvCipher is being compiled
| * Also only define the Inv* family of functions if InvCipher is being compiledRoy Keene2019-01-221-1/+2
|/ | | | Since only it uses them
* Merge pull request #121 from rkeene/invcipher-not-ctrkokke2019-01-171-1/+2
|\ | | | | Only define InvCipher if needed
| * Only define InvCipher if neededRoy Keene2019-01-111-1/+2
|/ | | | If AES is being compiled only for AES-CTR, don't compile InvCipher since it is not used
* Update aes.ckokke2018-12-031-2/+2
| | | Suggestion by @DamonHD in https://github.com/kokke/tiny-AES-c/issues/118
* Update aes.ckokke2018-11-301-2/+2
| | | Hopefully resolving https://github.com/kokke/tiny-AES-c/issues/118
* new target for building static library: make libkokke2018-09-241-3/+10
|
* Merge pull request #109 from franzinc/masterkokke2018-09-103-115/+119
|\ | | | | Testing improvements
| * Testing improvementsKevin Layer2018-07-263-115/+119
|/ | | | | | | | | | | Add a new `test' rule that tests all three combinations (128, 192 and 256). This required the re-ordering of ifdef's in test.c, similar to that in aes.[ch]. test.elf now exits with the number of tests which failed, so the test rule in Makefile will notify properly. Remove the unused variables `buf' and `buf2'. Also, add a .gitignore file.
* Update README.mdkokke2018-06-271-1/+1
|
* Update README.mdkokke2018-05-291-2/+2
|
* Update aes.ckokke2018-05-291-2/+2
|
* Update aes.hkokke2018-05-291-2/+2
|
* Update library.jsonkokke2018-05-221-1/+2
|
* Update library.jsonkokke2018-05-081-1/+2
|
* Update README.mdkokke2018-05-041-1/+1
|
* Merge pull request #99 from pjunni/patch-1kokke2018-05-031-1/+1
|\ | | | | Fix JSON
| * Fix JSONPetter Junni2018-05-031-1/+1
|/
* Commenting reason for extra calls to xtime()kokke2018-05-021-1/+4
|
* Merge pull request #94 from lucifurtun/masterkokke2018-03-211-0/+11
|\ | | | | Add @PlatformIO Library Registry manifest file
| * Add @PlatformIO Library Registry manifest fileLuci Furtun2018-03-191-0/+11
|/
* Merge pull request #89 from nickaknudson/masterkokke2018-02-012-2/+2
|\ | | | | CTR-only mode still needs functions to update counter (iv)
| * CTR-only mode still needs functions to update counter (iv)Nick Knudson2018-01-312-2/+2
|/
* Update README.mdkokke2017-12-291-0/+2
|
* Create aes.hppkokke2017-12-291-0/+12
|
* Update README.mdkokke2017-12-191-1/+1
|
* Update README.mdkokke2017-12-191-1/+1
|
* Update README.mdkokke2017-12-191-7/+7
|
* Update aes.ckokke2017-12-131-3/+0
|
* fixing #77kokke2017-12-081-1/+0
|
* Update test.ckokke2017-12-061-15/+18
|
* Cosmetic: whitespace and indentation changeskokke2017-12-061-137/+137
|
* Update README.mdkokke2017-12-061-1/+1
|
* Update README.mdkokke2017-12-061-1/+1
|
* Update README.mdkokke2017-12-061-3/+3
|
* Update README.mdkokke2017-12-061-3/+3
|
* Update README.mdkokke2017-12-061-2/+2
|
* Update aes.hkokke2017-12-061-11/+10
|
* Update aes.ckokke2017-12-061-55/+57
|
* Update aes.hkokke2017-12-061-3/+4
|
* Update aes.hkokke2017-12-061-7/+7
|
* Merge pull request #76 from sdrsdr/newapikokke2017-12-065-208/+212
|\ | | | | New API to be thread safe, with in-place operations
| * update readme to show new api styleStoian Ivanov2017-12-051-6/+17
| |
| * Merge remote-tracking branch 'upstr/master' into newapiStoian Ivanov2017-12-052-24/+5
| |\ | |/ |/|
* | Update README.mdkokke2017-12-041-1/+1
| |
* | Update aes.ckokke2017-12-041-28/+8
| |
| * inplace api and test, Makefile updateStoian Ivanov2017-12-054-75/+69
| |
| * make thead safe via context pram; remove padding as non working; opitmise abitStoian Ivanov2017-12-053-165/+163
|/
* Update README.mdkokke2017-12-011-1/+1
|
* wiki-links to supported block-cipher mode of operation.kokke2017-12-011-1/+1
|
* Update README.mdkokke2017-12-011-0/+2
|
* Update aes.ckokke2017-12-011-2/+2
|
* Update aes.ckokke2017-12-011-1/+2
|
* Update aes.hkokke2017-12-011-1/+2
|
* Update aes.hkokke2017-12-011-0/+1
|
* Update aes.hkokke2017-12-011-2/+1
|
* Update README.mdkokke2017-12-011-1/+1
|
* Update README.mdkokke2017-12-011-0/+1
|
* Update README.mdkokke2017-12-011-1/+1
|
* Update README.mdkokke2017-12-011-10/+7
|
* Update README.mdkokke2017-12-011-1/+1
|
* Update aes.ckokke2017-12-011-0/+2
|
* Update aes.ckokke2017-12-011-2/+2
|
* Update README.mdkokke2017-12-011-2/+2
|
* Update aes.ckokke2017-12-011-2/+3
|
* Update aes.hkokke2017-12-011-2/+2
|
* Update README.mdkokke2017-12-011-1/+1
|
* Update README.mdkokke2017-12-011-1/+1
|
* Update aes.ckokke2017-12-011-1/+1
|
* Update aes.ckokke2017-12-011-1/+1
|
* Update README.mdkokke2017-12-011-1/+1
|
* Update README.mdkokke2017-12-011-0/+1
|
* Update README.mdkokke2017-12-011-3/+6
|
* adding CTR-modekokke2017-12-011-6/+67
|
* adding CTR-modekokke2017-12-011-0/+13
|
* adding CTR-modekokke2017-12-011-1/+40
|
* Update README.mdkokke2017-11-101-1/+1
|
* Update README.mdkokke2017-11-101-1/+1
|
* Update aes.ckokke2017-11-101-0/+2
|
* Update aes.ckokke2017-11-101-1/+1
|
* Update aes.ckokke2017-11-101-1/+1
|
* Update README.mdkokke2017-07-131-1/+1
|
* Update README.mdkokke2017-07-131-9/+5
|
* Update aes.ckokke2017-07-131-1/+16
|
* Update README.mdkokke2017-07-111-1/+1
|
* Update README.mdkokke2017-07-101-3/+4
|
* Update README.mdkokke2017-07-101-1/+1
|
* Update README.mdkokke2017-07-081-1/+3
|
* Update aes.ckokke2017-07-081-19/+19
| | | cosmetic changes
* Update aes.hkokke2017-07-081-0/+2
|
* Update aes.ckokke2017-07-081-1/+3
|
* Update aes.ckokke2017-07-081-40/+40
|
* Update aes.hkokke2017-07-081-5/+5
|
* Update aes.ckokke2017-07-081-8/+8
|
* Delete tiny-AES128-C.fileskokke2017-07-081-5/+0
|
* Update README.mdkokke2017-07-081-0/+2
|
* Update README.mdkokke2017-07-081-4/+2
|
* Update README.mdkokke2017-07-081-1/+1
|
* Update README.mdkokke2017-07-081-2/+2
|
* Update README.mdkokke2017-07-081-1/+1
|
* Merge pull request #58 from bricke/masterkokke2017-07-085-122/+188
|\ | | | | Adding AES192 and AES256
| * removed unecessary blockcopyMatteo Brichese2017-07-081-6/+0
| |
| * removed unecessary blockcopyMatteo Brichese2017-07-081-4/+4
| |
| * removing unused bufferMatteo Brichese2017-06-061-1/+0
| |
| * Merge branch 'master' of https://github.com/bricke/tiny-AES128-CMatteo Brichese2017-06-063-64/+123
| |\
| | * Merge pull request #1 from bricke/aesMatteo Brichese2017-06-063-64/+123
| | |\ | | | | | | | | Aes
| | | * added AES192 and 256Matteo Brichese2017-06-063-23/+29
| | | |
| | | * Encrypt CBC worksMatteo Brichese2017-06-062-21/+21
| | | |
| | | * adding aes256 aes192 optionsMatteo Brichese2017-06-063-48/+101
| | |/
| * / fixMatteo Brichese2017-06-061-1/+1
| |/
| * Merge branch 'master' of https://github.com/bricke/tiny-AES128-CMatteo Brichese2017-06-061-2/+2
| |\
| | * Update README.mdMatteo Brichese2017-06-061-1/+1
| | |
| | * Update README.mdMatteo Brichese2017-06-061-1/+1
| | |
| | * Update README.mdMatteo Brichese2017-06-061-1/+1
| | |
| * | cleaning upMatteo Brichese2017-06-062-12/+13
| |/
| * updated readmeMatteo Brichese2017-06-061-7/+6
| |
| * adding Key Expansion for AES192 and AES256Matteo Brichese2017-06-062-46/+55
| |
| * updated readmeMatteo Brichese2017-06-052-1/+6
| |
* | Update test.ckokke2017-06-281-1/+1
|/
* Update README.mdkokke2017-03-131-1/+1
|
* Merge pull request #24 from namreeb/masterkokke2017-01-050-0/+0
|\ | | | | const'ify some parameters
| * const'ify some parametersnamreeb2015-08-072-5/+5
| |
* | Merge pull request #46 from RaptorFactor/masterkokke2017-01-052-5/+5
|\ \ | | | | | | Make ECB API const-correct.
| * | Make ECB API const-correct.RaptorFactor2017-01-042-5/+5
|/ /
* | s/strncmp/memcmp/gkokke2016-06-151-4/+4
| |
* | Update README.mdkokke2015-11-101-4/+4
| |
* | Update README.mdkokke2015-11-101-1/+1
| |
* | Update README.mdkokke2015-11-101-2/+1
| |
* | Update README.mdkokke2015-11-101-0/+1
| |
* | Update README.mdkokke2015-11-101-0/+2
|/
* Merge pull request #19 from bitdust/masterkokke2015-05-251-2/+2
|\ | | | | use uintptr_t instead of intptr_t to avoid warming C4018 in Virsual Studio.
| * Update aes.cbitdust2015-05-081-2/+2
|/ | | | | use uintptr_t instead of intptr_t to avoid warming C4018 in Virsual Studio. warming C4018: 'expression' : signed/unsigned mismatch https://msdn.microsoft.com/library/y92ktdf2.aspx
* Update test.ckokke2014-12-151-3/+3
|
* Update README.mdkokke2014-12-151-3/+3
|
* Update README.mdkokke2014-12-151-1/+5
|
* Update aes.hkokke2014-12-151-1/+1
|
* Update aes.ckokke2014-12-151-2/+4
|
* Delete aes_cbc.ckokke2014-12-151-581/+0
|
* Included CBC modekokke2014-12-151-9/+119
|
* Update aes.hkokke2014-12-151-1/+1
|
* Update aes.hkokke2014-12-151-0/+31
|
* Update aes_cbc.ckokke2014-12-151-39/+46
|
* Included test of CBC modekokke2014-12-151-14/+114
|
* UNTESTEDkokke2014-12-111-0/+574
|
* Update README.mdkokke2014-12-111-2/+2
|
* Update aes.hkokke2014-12-111-2/+0
|
* Update README.mdkokke2014-12-101-1/+1
|
* Update README.mdkokke2014-12-101-2/+5
|
* Update aes.ckokke2014-12-101-73/+27
|
* Merge pull request #7 from mb300sd/masterkokke2014-12-102-86/+105
|\ | | | | No-copy operation - thank you for that contribution mbed300sd!
| * No-copy operationmb300sd2014-12-092-86/+105
|/
* Create unlicense.txtkokke2014-12-081-0/+24
|
* Update test.ckokke2014-12-081-1/+1
|
* Update test.ckokke2014-12-081-1/+1
|
* Update aes.ckokke2014-12-081-1/+1
|
* Update aes.ckokke2014-12-081-2/+2
|
* Update aes.hkokke2014-12-081-2/+2
|
* Update aes.ckokke2014-12-061-32/+46
| | | Kindly accepting corrections and additions from jcallan :)
* Update aes.ckokke2014-11-261-20/+20
|
* Update README.mdkokke2014-11-151-2/+2
|
* Update README.mdkokke2014-10-191-1/+1
|
* Update README.mdkokke2014-09-081-1/+1
|
* Update README.mdkokke2014-09-081-0/+1
|
* Update README.mdkokke2014-07-131-2/+2
|
* Update README.mdkokke2014-07-131-1/+1
|
* Update README.mdkokke2014-07-131-1/+1
|
* Update README.mdkokke2014-07-121-2/+2
|
* Update README.mdkokke2014-07-121-1/+9
|
* Update README.mdkokke2014-07-121-1/+1
|
* Update README.mdkokke2014-07-121-1/+1
|
* Update README.mdkokke2014-07-121-4/+4
|
* Update README.mdkokke2014-07-121-0/+7
|
* Update README.mdkokke2014-07-121-1/+1
|
* Update test.ckokke2014-07-121-1/+24
|
* Update aes.ckokke2014-07-121-4/+157
|
* Update aes.hkokke2014-07-121-0/+1
|
* Update README.mdkokke2014-07-121-4/+4
|
* Update README.mdkokke2014-07-101-1/+1
|
* Update README.mdkokke2014-07-101-1/+1
|
* Update README.mdkokke2014-06-121-1/+1
|
* Update aes.ckokke2014-06-031-4/+4
|
* Update test.ckokke2014-06-031-1/+1
|
* Update aes.ckokke2014-06-031-1/+1
|
* Update aes.hkokke2014-06-031-1/+1
|
* Update aes.ckokke2014-06-031-1/+0
|
* Update aes.ckokke2014-06-031-2/+2
|
* Update test.ckokke2014-06-031-10/+0
|
* Update README.mdkokke2014-06-031-19/+2
|
* Update aes.ckokke2014-06-031-4/+4
|
* Update README.mdkokke2014-06-021-0/+13
|
* Update README.mdkokke2014-05-311-0/+4
|
* Update README.mdkokke2014-05-311-0/+1
|
* Update README.mdkokke2014-05-311-0/+2
|
* Update README.mdkokke2014-05-311-5/+6
|
* Update README.mdkokke2014-05-311-3/+4
|
* Update README.mdkokke2014-05-301-1/+1
|
* Update aes.ckokke2014-05-301-3/+1
|
* Update README.mdkokke2014-05-301-1/+1
|
* Update README.mdkokke2014-05-301-1/+5
|
* Update aes.ckokke2014-05-301-1/+1
|
* Update README.mdkokke2014-05-301-2/+2
|
* Update README.mdkokke2014-05-301-1/+2
|
* Update README.mdkokke2014-05-301-1/+0
|
* Update README.mdkokke2014-05-301-1/+3
|
* Update README.mdkokke2014-05-301-6/+6
|
* Update README.mdkokke2014-05-301-2/+2
|
* Update README.mdkokke2014-05-301-2/+2
|
* Update README.mdkokke2014-05-301-6/+6
|
* Update README.mdkokke2014-05-301-1/+3
|
* Rename README to README.mdkokke2014-05-301-0/+0
|
* Update READMEkokke2014-05-301-0/+2
|
* Update READMEkokke2014-05-291-0/+2
|
* Update READMEkokke2014-05-291-1/+1
|
* Update READMEkokke2014-05-291-1/+0
|
* Update READMEkokke2014-05-291-0/+1
|
* Update READMEkokke2014-05-291-1/+9
|
* Update READMEkokke2014-05-291-2/+3
|
* Update aes.ckokke2014-05-291-1/+1
|
* Update READMEkokke2014-05-291-4/+4
|
* Update READMEkokke2014-05-291-1/+10
|
* Update aes.ckokke2014-05-291-1/+1
|
* Update aes.ckokke2014-05-291-1/+1
|
* Update READMEkokke2014-05-291-0/+5
|
* Update aes.ckokke2014-05-291-1/+1
|
* Update aes.ckokke2014-05-291-2/+0
|
* Create test.ckokke2014-05-291-0/+75
|
* Update aes.ckokke2014-05-291-211/+211
|
* Create Makefilekokke2014-05-291-0/+40
|
* Create aes.hkokke2014-05-291-0/+8
|
* Create aes.ckokke2014-05-291-0/+338
|
* first commitMikkel J2012-05-241-0/+0