aes/aes_x86core.c: clarify reference implementation status.
authorAndy Polyakov <appro@openssl.org>
Wed, 1 Mar 2017 10:41:09 +0000 (11:41 +0100)
committerAndy Polyakov <appro@openssl.org>
Thu, 2 Mar 2017 15:26:01 +0000 (16:26 +0100)
Reviewed-by: Richard Levitte <levitte@openssl.org>
crypto/aes/aes_x86core.c

index 95b49bbabc28423b8d99f60f19e4a8320de715d8..21dca9eefe7a020260045c94d4ca34bcf9338362 100644 (file)
@@ -7,6 +7,14 @@
  * https://www.openssl.org/source/license.html
  */
 
+/*
+ * This is experimental x86[_64] derivative. It assumes little-endian
+ * byte order and expects CPU to sustain unaligned memory references.
+ * It is used as playground for cache-time attack mitigations and
+ * serves as reference C implementation for x86[_64] as well as some
+ * other assembly modules.
+ */
+
 /**
  * rijndael-alg-fst.c
  *
  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-/*
- * This is experimental x86[_64] derivative. It assumes little-endian
- * byte order and expects CPU to sustain unaligned memory references.
- * It is used as playground for cache-time attack mitigations and
- * serves as reference C implementation for x86[_64] assembler.
- *
- *                  <appro@fy.chalmers.se>
- */
-
 
 #include <assert.h>