summaryrefslogtreecommitdiff
path: root/win-x86_64/crypto/fipsmodule
diff options
context:
space:
mode:
authorRobert Sloan <varomodt@google.com>2018-11-26 12:19:07 -0800
committerRob Sloan <varomodt@google.com>2018-11-26 23:57:37 +0000
commitc9abfe422b3e387555f922dfcc280299b6e92975 (patch)
treed14d7f9ab8183be8607f208257356c192b4773a0 /win-x86_64/crypto/fipsmodule
parenta51059f202525842fc0d628a408ad5a5e33a54e7 (diff)
downloadboringssl-c9abfe422b3e387555f922dfcc280299b6e92975.tar.gz
external/boringssl: Sync to 9113e0996fd445ce187ae9dfeabfc95805b947a2.android-n-iot-release-ihome-igv1nougat-iot-release
This includes the following changes: https://boringssl.googlesource.com/boringssl/+log/fa3aadcd40ec4fd27a6e9492ef099b3dcc6eb2af..9113e0996fd445ce187ae9dfeabfc95805b947a2 Test: atest CtsLibcoreTestCases Change-Id: I31ed8a7c9481e7b42f0454f0ee64c26e17a85d52
Diffstat (limited to 'win-x86_64/crypto/fipsmodule')
-rw-r--r--win-x86_64/crypto/fipsmodule/aes-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/aesni-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/bsaes-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/ghash-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/md5-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/rdrand-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/rsaz-avx2.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/sha1-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/sha256-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/sha512-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/x86_64-mont.asm3
-rw-r--r--win-x86_64/crypto/fipsmodule/x86_64-mont5.asm3
16 files changed, 48 insertions, 0 deletions
diff --git a/win-x86_64/crypto/fipsmodule/aes-x86_64.asm b/win-x86_64/crypto/fipsmodule/aes-x86_64.asm
index 7edf4172..d714d5c1 100644
--- a/win-x86_64/crypto/fipsmodule/aes-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/aes-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm b/win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm
index cfdbe7c8..bb715a17 100644
--- a/win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/aesni-x86_64.asm b/win-x86_64/crypto/fipsmodule/aesni-x86_64.asm
index e9af4df2..1b56679c 100644
--- a/win-x86_64/crypto/fipsmodule/aesni-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/aesni-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/bsaes-x86_64.asm b/win-x86_64/crypto/fipsmodule/bsaes-x86_64.asm
index 57e31560..7dc0c5ac 100644
--- a/win-x86_64/crypto/fipsmodule/bsaes-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/bsaes-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/ghash-x86_64.asm b/win-x86_64/crypto/fipsmodule/ghash-x86_64.asm
index 230f42c4..31d601aa 100644
--- a/win-x86_64/crypto/fipsmodule/ghash-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/ghash-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/md5-x86_64.asm b/win-x86_64/crypto/fipsmodule/md5-x86_64.asm
index 2c799def..2f79e33e 100644
--- a/win-x86_64/crypto/fipsmodule/md5-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/md5-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm b/win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm
index ad578b91..54a87bb5 100644
--- a/win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm
+++ b/win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.asm b/win-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.asm
index 9023d8de..81c09ce9 100644
--- a/win-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.asm
+++ b/win-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/rdrand-x86_64.asm b/win-x86_64/crypto/fipsmodule/rdrand-x86_64.asm
index db379ddb..a34249b9 100644
--- a/win-x86_64/crypto/fipsmodule/rdrand-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/rdrand-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/rsaz-avx2.asm b/win-x86_64/crypto/fipsmodule/rsaz-avx2.asm
index 155c5e46..5165c583 100644
--- a/win-x86_64/crypto/fipsmodule/rsaz-avx2.asm
+++ b/win-x86_64/crypto/fipsmodule/rsaz-avx2.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/sha1-x86_64.asm b/win-x86_64/crypto/fipsmodule/sha1-x86_64.asm
index cec6e2b2..62dcc62c 100644
--- a/win-x86_64/crypto/fipsmodule/sha1-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/sha1-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/sha256-x86_64.asm b/win-x86_64/crypto/fipsmodule/sha256-x86_64.asm
index 5c787671..68c74cc1 100644
--- a/win-x86_64/crypto/fipsmodule/sha256-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/sha256-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/sha512-x86_64.asm b/win-x86_64/crypto/fipsmodule/sha512-x86_64.asm
index 6447391f..ea6c4f17 100644
--- a/win-x86_64/crypto/fipsmodule/sha512-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/sha512-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm b/win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm
index 015c0b21..d1d1fe74 100644
--- a/win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm
+++ b/win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/x86_64-mont.asm b/win-x86_64/crypto/fipsmodule/x86_64-mont.asm
index d28d1173..d6d8bdd6 100644
--- a/win-x86_64/crypto/fipsmodule/x86_64-mont.asm
+++ b/win-x86_64/crypto/fipsmodule/x86_64-mont.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD
diff --git a/win-x86_64/crypto/fipsmodule/x86_64-mont5.asm b/win-x86_64/crypto/fipsmodule/x86_64-mont5.asm
index 8cbce477..2ef94fc3 100644
--- a/win-x86_64/crypto/fipsmodule/x86_64-mont5.asm
+++ b/win-x86_64/crypto/fipsmodule/x86_64-mont5.asm
@@ -1,3 +1,6 @@
+; This file is generated from a similarly-named Perl script in the BoringSSL
+; source tree. Do not edit by hand.
+
default rel
%define XMMWORD
%define YMMWORD