/* $NetBSD: DISCLAIMER,v 1.3 2013/03/11 20:19:28 tron Exp $ */ /* * Copyright (c) 2010, Oracle America, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * Neither the name of the "Oracle America, Inc." nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ type='search' size='10' name='q' value=''/>
path: root/sys/crypto/chacha
AgeCommit message (Expand)Author
2022-11-05Make aes and chacha prints debug only.jmcneill
2020-10-10Fix detection of NEON features. ID_AA64PFR0_EL1_ADV_SIMD_NONE means SIMDjmcneill
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-08-23Adjust sp, not fp, to allocate a 32-byte temporary.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-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-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-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-27Align critical-path loops in AES and ChaCha.riastradh
2020-07-27Enable ChaCha NEON code on armv7 too.riastradh
2020-07-27Use <aarch64/asm.h> rather than copying things from it here.riastradh
2020-07-27Simplify ChaCha selection and allow it to be used much earlier.riastradh
2020-07-27Reduce some duplication.riastradh
2020-07-27New sysctl subtree kern.crypto.riastradh
2020-07-25Implement ChaCha with NEON on ARM.riastradh
2020-07-25Implement ChaCha with SSE2 on x86 machines.riastradh
2020-07-25New ChaCha API in kernel.riastradh