History log of /netbsd/sys/crypto/aes/arch/arm/aes_neon_impl.c (Results 1 – 5 of 5)
Revision Date Author Comments
# 44d22a78 10-Oct-2020 jmcneill <jmcneill@NetBSD.org>

Fix detection of NEON features. ID_AA64PFR0_EL1_ADV_SIMD_NONE means SIMD
is not available, and any other value means it is.


# c863802d 25-Jul-2020 riastradh <riastradh@NetBSD.org>

Implement AES-CCM with NEON.


# 3e379fa3 25-Jul-2020 riastradh <riastradh@NetBSD.org>

Split aes_impl declarations out into aes_impl.h.

This will make it less painful to add more operations to struct
aes_impl without having to recompile everything that just uses the
block cipher direc

Split aes_impl declarations out into aes_impl.h.

This will make it less painful to add more operations to struct
aes_impl without having to recompile everything that just uses the
block cipher directly or similar.

show more ...


# 59e65c44 30-Jun-2020 riastradh <riastradh@NetBSD.org>

New test sys/crypto/aes/t_aes.

Runs aes_selftest on all kernel AES implementations supported on the
current hardware, not just the preferred one.


# edd66bf2 29-Jun-2020 riastradh <riastradh@NetBSD.org>

New permutation-based AES implementation using ARM NEON.

Also derived from Mike Hamburg's public-domain vpaes code.