Update comments

pull/461/head
Jeffrey Walton 2017-07-31 03:55:10 -04:00
parent 205e116bcd
commit 48f46bb852
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
// crc-simd.cpp - written and placed in the public domain by
// Jeffrey Walton, Uri Blumenthal and Marcel Raad.
// aria-simd.cpp - written and placed in the public domain by
// Jeffrey Walton, Uri Blumenthal and Marcel Raad.
//
// This source file uses intrinsics to gain access to ARMv7a and
// ARMv8a NEON instructions. A separate source file is needed

View File

@ -1,10 +1,10 @@
// sha-simd.cpp - written and placed in the public domain by
// Jeffrey Walton, Uri Blumenthal and Marcel Raad.
// blake2-simd.cpp - written and placed in the public domain by
// Jeffrey Walton, Uri Blumenthal and Marcel Raad.
//
// This source file uses intrinsics to gain access to SHA-NI and
// ARMv8a SHA instructions. A separate source file is needed
// because additional CXXFLAGS are required to enable the
// appropriate instructions sets in some build configurations.
// This source file uses intrinsics to gain access to ARMv7a/ARMv8a
// NEON and SSE4.2 instructions. A separate source file is needed
// because additional CXXFLAGS are required to enable the appropriate
// instructions sets in some build configurations.
#include "pch.h"
#include "config.h"

View File

@ -1,4 +1,4 @@
// crc-simd.cpp - written and placed in the public domain by
// gcm-simd.cpp - written and placed in the public domain by
// Jeffrey Walton, Uri Blumenthal and Marcel Raad.
//
// This source file uses intrinsics to gain access to SSE4.2 and