summaryrefslogtreecommitdiff
path: root/sys/crypto/aes/arch
AgeCommit message (Expand)Author
2022-06-26arm/aes_neon: Fix formatting of self-test failure message.riastradh
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-07Fix vgetq_lane_u32 for aarch64eb with GCCjakllsch
2020-09-05x86: fix several CPUID flagsmaxv
2020-08-16Fix AES NEON code for big-endian softfp ARM.riastradh
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-28Draft 2x vectorized neon vpaes for aarch64.riastradh
2020-07-28Initialize authctr in both branches.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
2020-07-25Add some Intel intrinsics for ChaCha.riastradh
2020-07-25Fix target attribute on _mm_movehl_ps, fix clang _mm_unpacklo_epi64.riastradh
2020-07-25Add 32-bit load, store, and shift intrinsics.riastradh
2020-07-25Fix missing clang big-endian case.riastradh
2020-07-25Implement AES-CCM with NEON.riastradh
2020-07-25Implement AES-CCM with ARMv8.5-AES.riastradh
2020-07-25Invert some loops to save a branch instruction on every iteration.riastradh
2020-07-25Implement AES-CCM with VIA ACE.riastradh
2020-07-25Implement AES-CCM with SSSE3.riastradh
2020-07-25Implement AES-CCM with SSE2.riastradh
2020-07-25Implement AES-CCM with x86 AES-NI.riastradh
2020-07-25Split aes_impl declarations out into aes_impl.h.riastradh
2020-07-25Invert some loops to save a jmp instruction on each iteration.riastradh
2020-07-23fix build with llvm/clang.ryo
2020-07-22Fix register name in comment.riastradh
2020-07-19fix build with clang/llvm.ryo
2020-06-30Reallocate registers to avoid abusing callee-saves registers, v8-v15.riastradh
2020-06-30Use `.arch_extension aes' for aese/aesmc/aesd/aesimc.riastradh
2020-06-30Use .p2align rather than .align.riastradh
2020-06-30Tweak clang neon intrinsics so they build.riastradh
2020-06-30New test sys/crypto/aes/t_aes.riastradh
2020-06-30Limit aes_neon to cpu_cortex | aarch64.riastradh
2020-06-29Provide hand-written AES NEON assembly for arm32.riastradh