aboutsummaryrefslogtreecommitdiff
path: root/sys/crypto
Commit message (Expand)AuthorAgeFilesLines
* crypto: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin2022-05-066-14/+6
* ccp: Use devclass_find to lookup devclass in db_show_ccp.John Baldwin2022-04-211-1/+1
* Remove checks for __GNUCLIKE_ASM assuming it is always true.John Baldwin2022-04-122-6/+0
* armv8crypto: Remove leftover debug printfsMark Johnston2022-02-171-2/+0
* armv8crypto: Use cursors to access crypto buffer dataMark Johnston2022-02-163-171/+266
* armv8crypto: Factor out some duplicated GCM codeMark Johnston2022-02-161-60/+51
* crypto: Add an API supporting curve25519.John Baldwin2022-01-244-1/+137
* chacha20_poly1305: Use the correct license disclaimer.John Baldwin2022-01-202-4/+4
* crypto: Add a simple API for [X]ChaCha20-Poly1035 on flat buffers.John Baldwin2022-01-182-0/+295
* crypto: Re-add encrypt/decrypt_multi hooks to enc_xform.John Baldwin2022-01-111-2/+12
* sys/crypto: Use C99 fixed-width integer types.John Baldwin2021-12-281-15/+15
* aesni: Fix an out-of-bounds read in AES_GCM_decrypt()Mark Johnston2021-12-161-2/+3
* Add accelerated arm64 sha512 to libmdAndrew Turner2021-12-133-0/+223
* cryptosoft: Fully support per-operation keys for auth algorithms.John Baldwin2021-12-091-24/+14
* crypto: Validate AES-GCM IV length in check_csp().John Baldwin2021-12-093-9/+1
* libmd: Only define SHA256_Transform_c when using the ARM64 ifunc.John Baldwin2021-12-081-6/+4
* aesni: plug a set-but-not-unused var in aesni_newsessionMateusz Guzik2021-11-241-3/+0
* Add assembly optimized code for OpenSSL on powerpc, powerpc64 and powerpc64lePiotr Kubaj2021-11-2351-0/+70645
* aesni: Avoid a potential out-of-bounds load in AES_GCM_encrypt()Mark Johnston2021-11-161-3/+4
* ossl: Add support for ETA modeKornel Duleba2021-11-081-0/+33
* ossl: Add support for AES-CBC cipherKornel Duleba2021-11-089-32/+411
* Revert "ossl: Add support for AES-CBC cipher"Wojciech Macek2021-11-069-411/+32
* Revert "ossl: Add support for ETA mode"Wojciech Macek2021-11-061-33/+0
* ossl: Add support for ETA modeKornel Duleba2021-11-061-0/+33
* ossl: Add support for AES-CBC cipherKornel Duleba2021-11-069-32/+411
* crypto: Support Chacha20-Poly1305 with a nonce size of 8 bytes.John Baldwin2021-10-061-6/+8
* aesni: Support AES-CCM requests with a truncated tag.John Baldwin2021-10-063-19/+17
* aesni: Permit AES-CCM requests with neither payload nor AAD.John Baldwin2021-10-061-5/+0
* aesni: Handle requests with an empty payload.John Baldwin2021-10-061-10/+18
* aesni: Support multiple nonce lengths for AES-CCM.John Baldwin2021-10-062-28/+17
* crypto: Permit variable-sized IVs for ciphers with a reinit hook.John Baldwin2021-10-061-2/+3
* ccp, ccr: Simplify drivers to assume an AES-GCM IV length of 12.John Baldwin2021-10-061-3/+2
* crypto(4): Fix a few typos in camellia.cGordon Bergling2021-09-041-3/+3
* aesni: Avoid a potential out-of-bounds load in aes_encrypt_icm()Mark Johnston2021-08-301-5/+13
* Use arm64 sha256 intrinsics in libmdAndrew Turner2021-08-113-1/+168
* Remove "All Rights Reserved" from FreeBSD Foundation sys/ copyrightsEd Maste2021-08-081-1/+0
* crypto: Constify all transform descriptorsMark Johnston2021-07-267-18/+18
* ossl: Use crypto_cursor_segment().John Baldwin2021-05-251-24/+12
* crypto: Add a new type of crypto buffer for a single mbuf.John Baldwin2021-05-251-0/+3
* ossl: Don't encryt/decrypt too much data for chacha20.John Baldwin2021-04-011-3/+6
* armv8crypto: note derivation in armv8_crypto_wrap.cMitchell Horne2021-03-191-0/+7
* armv8crypto: fix AES-XTS regression introduced by ed9b7f44Oleksandr Tymoshenko2021-03-071-0/+3
* ossl: Add support for the ChaCha20 + Poly1305 AEAD cipher from RFC 8439John Baldwin2021-03-035-4/+333
* ossl: Add ChaCha20 cipher support.John Baldwin2021-03-034-19/+251
* ossl: Add Poly1305 digest support.John Baldwin2021-03-034-17/+248
* armv8crypto: add missing newlineElliott Mitchell2021-02-281-1/+1
* OpenSSL: Regen assembly files for OpenSSL 1.1.1jJung-uk Kim2021-02-171-4/+7
* armv8crypto: Extract GCM state into a structureMark Johnston2021-02-081-70/+65
* armv8crypto: Fix some edge cases in the AES-GCM implementationMark Johnston2021-02-081-18/+29
* armv8crypto: add AES-GCM supportOleksandr Tymoshenko2021-01-223-74/+417