summaryrefslogtreecommitdiffstats
path: root/arch/arm64/crypto
Commit message (Expand)AuthorAgeFilesLines
* crypto: sha - split sha.h into sha1.h and sha2.hEric Biggers2020-11-206-6/+6
* crypto: arm64/gcm - move authentication tag check to SIMD domainArd Biesheuvel2020-11-202-18/+43
* crypto: arm64/chacha - simplify tail block handlingArd Biesheuvel2020-11-131-124/+69
* crypto: arm64/poly1305-neon - reorder PAC authentication with SP updateArd Biesheuvel2020-11-062-2/+2
* crypto: hash - Use memzero_explicit() for clearing stateArvind Sankar2020-10-303-3/+3
* Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Linus Torvalds2020-10-133-2/+8
|\
| * crypto: arm64/gcm - Fix endianness warningsHerbert Xu2020-09-041-2/+2
| * crypto: arm64/sha - Add declarations for assembly variablesHerbert Xu2020-09-042-0/+6
* | crypto: arm64: Use x16 with indirect branch to bti_cJeremy Linton2020-10-061-2/+2
|/
* crypto: arm64/gcm - use inline helper to suppress indirect callsArd Biesheuvel2020-07-091-39/+46
* crypto: arm64/gcm - use variably sized key structArd Biesheuvel2020-07-091-28/+21
* crypto: arm64/gcm - disentangle ghash and gcm setkey() routinesArd Biesheuvel2020-07-091-25/+22
* crypto: arm64/ghash - drop PMULL based shashArd Biesheuvel2020-07-091-78/+12
* Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Linus Torvalds2020-06-014-6/+2
|\
| * crypto: lib/sha1 - remove unnecessary includes of linux/cryptohash.hEric Biggers2020-05-082-2/+0
| * crypto: arm64/aes-glue - use crypto_shash_tfm_digest()Eric Biggers2020-05-081-3/+1
| * crypto: arm64 - Consistently enable extensionMark Brown2020-04-241-1/+1
* | crypto: arch/nhpoly1305 - process in explicit 4k chunksJason A. Donenfeld2020-04-301-1/+1
* | crypto: arch/lib - limit simd usage to 4k chunksJason A. Donenfeld2020-04-302-7/+22
|/
* Merge tag 'spdx-5.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gre...Linus Torvalds2020-04-031-0/+1
|\
| * .gitignore: add SPDX License IdentifierMasahiro Yamada2020-03-251-0/+1
* | Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Linus Torvalds2020-04-014-0/+45
|\ \
| * | crypto: arm/neon - memzero_explicit aes-cbc keyTorsten Duwe2020-03-201-0/+1
| * | crypto: arm64/sha-ce - implement export/importCorentin Labbe2020-03-062-0/+43
| * | crypto: arm64/poly1305 - ignore build filesMatteo Croce2020-02-131-0/+1
| |/
* | Merge tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/a...Linus Torvalds2020-03-314-36/+36
|\ \
| * | arm64: crypto: Modernize names for AES function macrosMark Brown2020-03-093-28/+28
| * | arm64: crypto: Modernize some extra assembly annotationsMark Brown2020-03-091-8/+8
| |/
* | Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Linus Torvalds2020-03-231-4/+4
|\ \ | |/ |/|
| * crypto: arm64/chacha - correctly walk through blocksJason A. Donenfeld2020-03-201-4/+4
* | Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Linus Torvalds2020-01-2827-195/+172
|\|
| * crypto: {arm,arm64,mips}/poly1305 - remove redundant non-reduction from emitJason A. Donenfeld2020-01-161-16/+2
| * crypto: remove CRYPTO_TFM_RES_BAD_KEY_LENEric Biggers2020-01-094-46/+9
| * crypto: arm64 - Use modern annotations for assembly functionsMark Brown2019-12-2017-84/+84
| * crypto: arm64/ghash-neon - bump priority to 150Ard Biesheuvel2019-12-111-1/+1
| * crypto: arm64/sha - fix function typesSami Tolvanen2019-12-115-48/+76
* | sched/rt, arm64: Use CONFIG_PREEMPTIONThomas Gleixner2019-12-081-1/+1
|/
* crypto: arch - conditionalize crypto api in arch glue for lib codeJason A. Donenfeld2019-11-272-4/+6
* crypto: arm64/poly1305 - incorporate OpenSSL/CRYPTOGAMS NEON implementationArd Biesheuvel2019-11-175-1/+2000
* crypto: arm/chacha - remove dependency on generic ChaCha driverArd Biesheuvel2019-11-171-1/+1
* crypto: arm64/chacha - expose arm64 ChaCha routine as library functionArd Biesheuvel2019-11-172-11/+43
* crypto: arm64/chacha - depend on generic chacha library instead of crypto driverArd Biesheuvel2019-11-172-19/+23
* crypto: chacha - move existing library code into lib/cryptoArd Biesheuvel2019-11-171-1/+1
* crypto: skcipher - rename the crypto_blkcipher module and kconfig optionEric Biggers2019-11-011-4/+4
* crypto: arm64/aes-neonbs - add return value of skcipher_walk_done() in __xts_...Yunfeng Ye2019-11-011-1/+1
* crypto: arm64/gcm-ce - implement 4 way interleaveArd Biesheuvel2019-10-052-327/+467
* crypto: arm64/aes-neonbs - implement ciphertext stealing for XTSArd Biesheuvel2019-09-095-14/+110
* crypto: arm64/aes - implement support for XTS ciphertext stealingArd Biesheuvel2019-09-092-30/+195
* crypto: arm64/aes-cts-cbc - move request context data to the stackArd Biesheuvel2019-09-091-35/+26
* crypto: arm64/aes-cts-cbc-ce - performance tweakArd Biesheuvel2019-09-091-3/+2