summaryrefslogtreecommitdiff
path: root/sys/crypto
AgeCommit message (Expand)Author
2022-11-05Make aes and chacha prints debug only.jmcneill
2022-09-01cprng_fast(9): Assert not in pserialize read section.riastradh
2022-06-26arm/aes_neon: Fix formatting of self-test failure message.riastradh
2022-06-01cprng(9): cprng_fast is no longer used from interrupt context.riastradh
2022-04-16fix various typos in comments and log messages.andvar
2021-12-05s/folllowing/following/msaitoh
2021-10-17Upgrade self-test passed messages from verbose to debug.jmcneill
2021-10-15fix typos in comments.andvar
2021-09-04Fix typos in comments and add missing KERNEL_RCSIDgutteridge
2021-04-14use an enum instead of constant variables so that they work in CTASSERT.christos
2020-11-21Fix build with clang for earmv7hf; loadroundkey() is used only for __aarch64__.rin
2020-10-10Fix detection of NEON features. ID_AA64PFR0_EL1_ADV_SIMD_NONE means SIMDjmcneill
2020-09-10aes neon: Gather mc_forward/backward so we can load 256 bits at once.riastradh
2020-09-10aes neon: Hoist dsbd/dsbe address calculation out of loop.riastradh
2020-09-10aes neon: Tweak register usage.riastradh
2020-09-10aes neon: Write vtbl with {qN} rather than {d(2N)-d(2N+1)}.riastradh
2020-09-10aes neon: Issue 256-bit loads rather than pairs of 128-bit loads.riastradh
2020-09-08aesarmv8: Reallocate registers to shave off unnecessary MOV.riastradh
2020-09-08aesarmv8: Issue two 4-register ld/st, not four 2-register ld/st.riastradh
2020-09-08aesarmv8: Adapt aes_armv8_64.S to big-endian.riastradh
2020-09-08aes(9): Fix edge case in bitsliced SSE2 AES-CBC decryption.riastradh
2020-09-08Acknowledge clang warning for NEON cipher code on aarch64ebjakllsch
2020-09-08use correct conditionjakllsch
2020-09-07Fix vgetq_lane_u32 for aarch64eb with GCCjakllsch
2020-09-07Use a working macro to detect big endian aarch64.jakllsch
2020-09-05x86: fix several CPUID flagsmaxv
2020-08-26Instead of returning 0 when sysctl kern.expose_address=0, return a randomchristos
2020-08-23Adjust sp, not fp, to allocate a 32-byte temporary.riastradh
2020-08-20Import small BLAKE2s implementation.riastradh
2020-08-20[ozaki-r] libsodium glueriastradh
2020-08-16Fix AES NEON code for big-endian softfp ARM.riastradh
2020-08-10Add hack to compile aes_ccm_tag() with -O0 for m68k for GCC8.rin
2020-08-09Fix some clang neon intrinsics.riastradh
2020-08-09Use vshlq_n_s32 rather than vsliq_n_s32 with zero destination.riastradh
2020-08-09Nix outdated comment.riastradh
2020-08-09Fix mistake in big-endian arm clang.riastradh
2020-08-08Fix ARM NEON implementations of AES and ChaCha on big-endian ARM.riastradh
2020-07-29Issue three more swaps to save eight stores.riastradh
2020-07-28Rewrite cprng_fast in terms of new ChaCha API.riastradh
2020-07-28Draft 2x vectorized neon vpaes for aarch64.riastradh
2020-07-28Implement 4-way vectorization of ChaCha for armv7 NEON.riastradh
2020-07-28Fix big-endian build with appropriate casts around vrev32q_u8.riastradh
2020-07-28Fix typo in comment.riastradh
2020-07-28Initialize authctr in both branches.riastradh
2020-07-27Note that VSRI seems to hurt here.riastradh
2020-07-27Take advantage of REV32 and TBL for 16-bit and 8-bit rotations.riastradh
2020-07-27Add RCSIDs to the AES and ChaCha .S sources.riastradh
2020-07-27Issue aese/aesmc and aesd/aesimc in pairs.riastradh
2020-07-27Align critical-path loops in AES and ChaCha.riastradh
2020-07-27PIC for aes_neon_32.S.riastradh