summaryrefslogtreecommitdiffstats
path: root/aes.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #173 from Youw/masterkokke2021-01-061-6/+6
|\ | | | | use size_t for buffer size and its indexes
| * use size_t for buffer size and its indexesIhor Dutchak2020-09-261-6/+6
| | | | | | | | | | | | | | | | - this allows using CBC/CTR with buffers larger than 4GB on 64bit systems; Closes: #172 Signed-off-by: Ihor Dutchak <ihor.youw@gmail.com>
* | 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.
* removing commented-out call to printf...kokke2020-03-301-1/+0
|
* loop optimizationDmitry2020-03-031-18/+17
|
* Update aes.ckokke2020-01-241-1/+0
|
* Update aes.ckokke2019-02-221-3/+3
| | | cosmetic: fixing whitespace / indentation
* Const-qualify all read-only pointersTorfinn Berset2019-02-211-9/+9
|
* Also only define the Inv* family of functions if InvCipher is being compiledRoy Keene2019-01-221-1/+2
| | | | Since only it uses them
* 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
* Update aes.ckokke2018-05-291-2/+2
|
* Commenting reason for extra calls to xtime()kokke2018-05-021-1/+4
|
* CTR-only mode still needs functions to update counter (iv)Nick Knudson2018-01-311-1/+1
|
* Update aes.ckokke2017-12-131-3/+0
|
* Update aes.ckokke2017-12-061-55/+57
|
* Merge remote-tracking branch 'upstr/master' into newapiStoian Ivanov2017-12-051-23/+4
|\
| * Update aes.ckokke2017-12-041-28/+8
| |
* | inplace api and test, Makefile updateStoian Ivanov2017-12-051-37/+31
| |
* | make thead safe via context pram; remove padding as non working; opitmise abitStoian Ivanov2017-12-051-147/+100
|/
* Update aes.ckokke2017-12-011-2/+2
|
* Update aes.ckokke2017-12-011-1/+2
|
* Update aes.ckokke2017-12-011-0/+2
|
* Update aes.ckokke2017-12-011-2/+2
|
* Update aes.ckokke2017-12-011-2/+3
|
* Update aes.ckokke2017-12-011-1/+1
|
* Update aes.ckokke2017-12-011-1/+1
|
* adding CTR-modekokke2017-12-011-1/+40
|
* Update aes.ckokke2017-11-101-0/+2
|
* Update aes.ckokke2017-11-101-1/+1
|
* Update aes.ckokke2017-11-101-1/+1
|
* Update aes.ckokke2017-07-131-1/+16
|
* Update aes.ckokke2017-07-081-19/+19
| | | cosmetic changes
* Update aes.ckokke2017-07-081-1/+3
|
* Update aes.ckokke2017-07-081-40/+40
|
* Update aes.ckokke2017-07-081-8/+8
|
* removed unecessary blockcopyMatteo Brichese2017-07-081-6/+0
|
* removed unecessary blockcopyMatteo Brichese2017-07-081-4/+4
|
* added AES192 and 256Matteo Brichese2017-06-061-15/+15
|
* Encrypt CBC worksMatteo Brichese2017-06-061-20/+20
|
* adding aes256 aes192 optionsMatteo Brichese2017-06-061-23/+13
|
* adding Key Expansion for AES192 and AES256Matteo Brichese2017-06-061-40/+51
|
* Make ECB API const-correct.RaptorFactor2017-01-041-3/+3
|
* 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 aes.ckokke2014-12-151-2/+4
|
* Included CBC modekokke2014-12-151-9/+119
|
* Update aes.ckokke2014-12-101-73/+27
|
* No-copy operationmb300sd2014-12-091-86/+103
|
* Update aes.ckokke2014-12-081-1/+1
|
* Update aes.ckokke2014-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 aes.ckokke2014-07-121-4/+157
|
* Update aes.ckokke2014-06-031-4/+4
|
* Update aes.ckokke2014-06-031-1/+1
|
* Update aes.ckokke2014-06-031-1/+0
|
* Update aes.ckokke2014-06-031-2/+2
|
* Update aes.ckokke2014-06-031-4/+4
|
* Update aes.ckokke2014-05-301-3/+1
|
* Update aes.ckokke2014-05-301-1/+1
|
* Update aes.ckokke2014-05-291-1/+1
|
* Update aes.ckokke2014-05-291-1/+1
|
* Update aes.ckokke2014-05-291-1/+1
|
* Update aes.ckokke2014-05-291-1/+1
|
* Update aes.ckokke2014-05-291-2/+0
|
* Update aes.ckokke2014-05-291-211/+211
|
* Create aes.ckokke2014-05-291-0/+338