regenerate projects

pull/20100/head
Jan Tattermusch 5 years ago
parent 520c4a737d
commit 6c763452ab
  1. 9
      Makefile
  2. 7
      config.m4
  3. 7
      config.w32
  4. 8
      grpc.gemspec
  5. 6
      grpc.gyp
  6. 8
      package.xml
  7. 532
      src/boringssl/crypto_test_data.cc
  8. 866
      src/boringssl/err_data.c
  9. 6
      src/python/grpcio/grpc_core_dependencies.py

@ -7805,12 +7805,15 @@ LIBBORINGSSL_SRC = \
third_party/boringssl/crypto/evp/p_ed25519_asn1.c \ third_party/boringssl/crypto/evp/p_ed25519_asn1.c \
third_party/boringssl/crypto/evp/p_rsa.c \ third_party/boringssl/crypto/evp/p_rsa.c \
third_party/boringssl/crypto/evp/p_rsa_asn1.c \ third_party/boringssl/crypto/evp/p_rsa_asn1.c \
third_party/boringssl/crypto/evp/p_x25519.c \
third_party/boringssl/crypto/evp/p_x25519_asn1.c \
third_party/boringssl/crypto/evp/pbkdf.c \ third_party/boringssl/crypto/evp/pbkdf.c \
third_party/boringssl/crypto/evp/print.c \ third_party/boringssl/crypto/evp/print.c \
third_party/boringssl/crypto/evp/scrypt.c \ third_party/boringssl/crypto/evp/scrypt.c \
third_party/boringssl/crypto/evp/sign.c \ third_party/boringssl/crypto/evp/sign.c \
third_party/boringssl/crypto/ex_data.c \ third_party/boringssl/crypto/ex_data.c \
third_party/boringssl/crypto/fipsmodule/bcm.c \ third_party/boringssl/crypto/fipsmodule/bcm.c \
third_party/boringssl/crypto/fipsmodule/fips_shared_support.c \
third_party/boringssl/crypto/fipsmodule/is_fips.c \ third_party/boringssl/crypto/fipsmodule/is_fips.c \
third_party/boringssl/crypto/hkdf/hkdf.c \ third_party/boringssl/crypto/hkdf/hkdf.c \
third_party/boringssl/crypto/hrss/hrss.c \ third_party/boringssl/crypto/hrss/hrss.c \
@ -7845,6 +7848,7 @@ LIBBORINGSSL_SRC = \
third_party/boringssl/crypto/refcount_lock.c \ third_party/boringssl/crypto/refcount_lock.c \
third_party/boringssl/crypto/rsa_extra/rsa_asn1.c \ third_party/boringssl/crypto/rsa_extra/rsa_asn1.c \
third_party/boringssl/crypto/rsa_extra/rsa_print.c \ third_party/boringssl/crypto/rsa_extra/rsa_print.c \
third_party/boringssl/crypto/siphash/siphash.c \
third_party/boringssl/crypto/stack/stack.c \ third_party/boringssl/crypto/stack/stack.c \
third_party/boringssl/crypto/thread.c \ third_party/boringssl/crypto/thread.c \
third_party/boringssl/crypto/thread_none.c \ third_party/boringssl/crypto/thread_none.c \
@ -7969,8 +7973,8 @@ LIBBORINGSSL_SRC = \
third_party/boringssl/ssl/tls_method.cc \ third_party/boringssl/ssl/tls_method.cc \
third_party/boringssl/ssl/tls_record.cc \ third_party/boringssl/ssl/tls_record.cc \
third_party/boringssl/third_party/fiat/curve25519.c \ third_party/boringssl/third_party/fiat/curve25519.c \
third_party/boringssl/third_party/sike/P503.c \
third_party/boringssl/third_party/sike/asm/fp_generic.c \ third_party/boringssl/third_party/sike/asm/fp_generic.c \
third_party/boringssl/third_party/sike/curve_params.c \
third_party/boringssl/third_party/sike/fpx.c \ third_party/boringssl/third_party/sike/fpx.c \
third_party/boringssl/third_party/sike/isogeny.c \ third_party/boringssl/third_party/sike/isogeny.c \
third_party/boringssl/third_party/sike/sike.c \ third_party/boringssl/third_party/sike/sike.c \
@ -20279,6 +20283,7 @@ BORINGSSL_CRYPTO_TEST_SRC = \
third_party/boringssl/crypto/refcount_test.cc \ third_party/boringssl/crypto/refcount_test.cc \
third_party/boringssl/crypto/rsa_extra/rsa_test.cc \ third_party/boringssl/crypto/rsa_extra/rsa_test.cc \
third_party/boringssl/crypto/self_test.cc \ third_party/boringssl/crypto/self_test.cc \
third_party/boringssl/crypto/siphash/siphash_test.cc \
third_party/boringssl/crypto/stack/stack_test.cc \ third_party/boringssl/crypto/stack/stack_test.cc \
third_party/boringssl/crypto/test/abi_test.cc \ third_party/boringssl/crypto/test/abi_test.cc \
third_party/boringssl/crypto/test/file_test_gtest.cc \ third_party/boringssl/crypto/test/file_test_gtest.cc \
@ -20419,6 +20424,8 @@ $(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/rsa_extra/rsa_test.o: $(LIBDIR
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/self_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a $(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/self_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/siphash/siphash_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/stack/stack_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a $(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/stack/stack_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/test/abi_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a $(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/test/abi_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a

@ -559,12 +559,15 @@ if test "$PHP_GRPC" != "no"; then
third_party/boringssl/crypto/evp/p_ed25519_asn1.c \ third_party/boringssl/crypto/evp/p_ed25519_asn1.c \
third_party/boringssl/crypto/evp/p_rsa.c \ third_party/boringssl/crypto/evp/p_rsa.c \
third_party/boringssl/crypto/evp/p_rsa_asn1.c \ third_party/boringssl/crypto/evp/p_rsa_asn1.c \
third_party/boringssl/crypto/evp/p_x25519.c \
third_party/boringssl/crypto/evp/p_x25519_asn1.c \
third_party/boringssl/crypto/evp/pbkdf.c \ third_party/boringssl/crypto/evp/pbkdf.c \
third_party/boringssl/crypto/evp/print.c \ third_party/boringssl/crypto/evp/print.c \
third_party/boringssl/crypto/evp/scrypt.c \ third_party/boringssl/crypto/evp/scrypt.c \
third_party/boringssl/crypto/evp/sign.c \ third_party/boringssl/crypto/evp/sign.c \
third_party/boringssl/crypto/ex_data.c \ third_party/boringssl/crypto/ex_data.c \
third_party/boringssl/crypto/fipsmodule/bcm.c \ third_party/boringssl/crypto/fipsmodule/bcm.c \
third_party/boringssl/crypto/fipsmodule/fips_shared_support.c \
third_party/boringssl/crypto/fipsmodule/is_fips.c \ third_party/boringssl/crypto/fipsmodule/is_fips.c \
third_party/boringssl/crypto/hkdf/hkdf.c \ third_party/boringssl/crypto/hkdf/hkdf.c \
third_party/boringssl/crypto/hrss/hrss.c \ third_party/boringssl/crypto/hrss/hrss.c \
@ -599,6 +602,7 @@ if test "$PHP_GRPC" != "no"; then
third_party/boringssl/crypto/refcount_lock.c \ third_party/boringssl/crypto/refcount_lock.c \
third_party/boringssl/crypto/rsa_extra/rsa_asn1.c \ third_party/boringssl/crypto/rsa_extra/rsa_asn1.c \
third_party/boringssl/crypto/rsa_extra/rsa_print.c \ third_party/boringssl/crypto/rsa_extra/rsa_print.c \
third_party/boringssl/crypto/siphash/siphash.c \
third_party/boringssl/crypto/stack/stack.c \ third_party/boringssl/crypto/stack/stack.c \
third_party/boringssl/crypto/thread.c \ third_party/boringssl/crypto/thread.c \
third_party/boringssl/crypto/thread_none.c \ third_party/boringssl/crypto/thread_none.c \
@ -723,8 +727,8 @@ if test "$PHP_GRPC" != "no"; then
third_party/boringssl/ssl/tls_method.cc \ third_party/boringssl/ssl/tls_method.cc \
third_party/boringssl/ssl/tls_record.cc \ third_party/boringssl/ssl/tls_record.cc \
third_party/boringssl/third_party/fiat/curve25519.c \ third_party/boringssl/third_party/fiat/curve25519.c \
third_party/boringssl/third_party/sike/P503.c \
third_party/boringssl/third_party/sike/asm/fp_generic.c \ third_party/boringssl/third_party/sike/asm/fp_generic.c \
third_party/boringssl/third_party/sike/curve_params.c \
third_party/boringssl/third_party/sike/fpx.c \ third_party/boringssl/third_party/sike/fpx.c \
third_party/boringssl/third_party/sike/isogeny.c \ third_party/boringssl/third_party/sike/isogeny.c \
third_party/boringssl/third_party/sike/sike.c \ third_party/boringssl/third_party/sike/sike.c \
@ -863,6 +867,7 @@ if test "$PHP_GRPC" != "no"; then
PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rand_extra) PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rand_extra)
PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rc4) PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rc4)
PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rsa_extra) PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rsa_extra)
PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/siphash)
PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/stack) PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/stack)
PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509) PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509)
PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509v3) PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509v3)

@ -529,12 +529,15 @@ if (PHP_GRPC != "no") {
"third_party\\boringssl\\crypto\\evp\\p_ed25519_asn1.c " + "third_party\\boringssl\\crypto\\evp\\p_ed25519_asn1.c " +
"third_party\\boringssl\\crypto\\evp\\p_rsa.c " + "third_party\\boringssl\\crypto\\evp\\p_rsa.c " +
"third_party\\boringssl\\crypto\\evp\\p_rsa_asn1.c " + "third_party\\boringssl\\crypto\\evp\\p_rsa_asn1.c " +
"third_party\\boringssl\\crypto\\evp\\p_x25519.c " +
"third_party\\boringssl\\crypto\\evp\\p_x25519_asn1.c " +
"third_party\\boringssl\\crypto\\evp\\pbkdf.c " + "third_party\\boringssl\\crypto\\evp\\pbkdf.c " +
"third_party\\boringssl\\crypto\\evp\\print.c " + "third_party\\boringssl\\crypto\\evp\\print.c " +
"third_party\\boringssl\\crypto\\evp\\scrypt.c " + "third_party\\boringssl\\crypto\\evp\\scrypt.c " +
"third_party\\boringssl\\crypto\\evp\\sign.c " + "third_party\\boringssl\\crypto\\evp\\sign.c " +
"third_party\\boringssl\\crypto\\ex_data.c " + "third_party\\boringssl\\crypto\\ex_data.c " +
"third_party\\boringssl\\crypto\\fipsmodule\\bcm.c " + "third_party\\boringssl\\crypto\\fipsmodule\\bcm.c " +
"third_party\\boringssl\\crypto\\fipsmodule\\fips_shared_support.c " +
"third_party\\boringssl\\crypto\\fipsmodule\\is_fips.c " + "third_party\\boringssl\\crypto\\fipsmodule\\is_fips.c " +
"third_party\\boringssl\\crypto\\hkdf\\hkdf.c " + "third_party\\boringssl\\crypto\\hkdf\\hkdf.c " +
"third_party\\boringssl\\crypto\\hrss\\hrss.c " + "third_party\\boringssl\\crypto\\hrss\\hrss.c " +
@ -569,6 +572,7 @@ if (PHP_GRPC != "no") {
"third_party\\boringssl\\crypto\\refcount_lock.c " + "third_party\\boringssl\\crypto\\refcount_lock.c " +
"third_party\\boringssl\\crypto\\rsa_extra\\rsa_asn1.c " + "third_party\\boringssl\\crypto\\rsa_extra\\rsa_asn1.c " +
"third_party\\boringssl\\crypto\\rsa_extra\\rsa_print.c " + "third_party\\boringssl\\crypto\\rsa_extra\\rsa_print.c " +
"third_party\\boringssl\\crypto\\siphash\\siphash.c " +
"third_party\\boringssl\\crypto\\stack\\stack.c " + "third_party\\boringssl\\crypto\\stack\\stack.c " +
"third_party\\boringssl\\crypto\\thread.c " + "third_party\\boringssl\\crypto\\thread.c " +
"third_party\\boringssl\\crypto\\thread_none.c " + "third_party\\boringssl\\crypto\\thread_none.c " +
@ -693,8 +697,8 @@ if (PHP_GRPC != "no") {
"third_party\\boringssl\\ssl\\tls_method.cc " + "third_party\\boringssl\\ssl\\tls_method.cc " +
"third_party\\boringssl\\ssl\\tls_record.cc " + "third_party\\boringssl\\ssl\\tls_record.cc " +
"third_party\\boringssl\\third_party\\fiat\\curve25519.c " + "third_party\\boringssl\\third_party\\fiat\\curve25519.c " +
"third_party\\boringssl\\third_party\\sike\\P503.c " +
"third_party\\boringssl\\third_party\\sike\\asm\\fp_generic.c " + "third_party\\boringssl\\third_party\\sike\\asm\\fp_generic.c " +
"third_party\\boringssl\\third_party\\sike\\curve_params.c " +
"third_party\\boringssl\\third_party\\sike\\fpx.c " + "third_party\\boringssl\\third_party\\sike\\fpx.c " +
"third_party\\boringssl\\third_party\\sike\\isogeny.c " + "third_party\\boringssl\\third_party\\sike\\isogeny.c " +
"third_party\\boringssl\\third_party\\sike\\sike.c " + "third_party\\boringssl\\third_party\\sike\\sike.c " +
@ -890,6 +894,7 @@ if (PHP_GRPC != "no") {
FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\rand_extra"); FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\rand_extra");
FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\rc4"); FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\rc4");
FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\rsa_extra"); FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\rsa_extra");
FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\siphash");
FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\stack"); FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\stack");
FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\x509"); FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\x509");
FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\x509v3"); FSO.CreateFolder(base_dir+"\\ext\\grpc\\third_party\\boringssl\\crypto\\x509v3");

@ -964,7 +964,6 @@ Gem::Specification.new do |s|
s.files += %w( third_party/boringssl/crypto/fipsmodule/md5/internal.h ) s.files += %w( third_party/boringssl/crypto/fipsmodule/md5/internal.h )
s.files += %w( third_party/boringssl/crypto/fipsmodule/md5/md5.c ) s.files += %w( third_party/boringssl/crypto/fipsmodule/md5/md5.c )
s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/cbc.c ) s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/cbc.c )
s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/ccm.c )
s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/cfb.c ) s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/cfb.c )
s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/ctr.c ) s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/ctr.c )
s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/gcm.c ) s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/gcm.c )
@ -1064,6 +1063,7 @@ Gem::Specification.new do |s|
s.files += %w( third_party/boringssl/include/openssl/rsa.h ) s.files += %w( third_party/boringssl/include/openssl/rsa.h )
s.files += %w( third_party/boringssl/include/openssl/safestack.h ) s.files += %w( third_party/boringssl/include/openssl/safestack.h )
s.files += %w( third_party/boringssl/include/openssl/sha.h ) s.files += %w( third_party/boringssl/include/openssl/sha.h )
s.files += %w( third_party/boringssl/include/openssl/siphash.h )
s.files += %w( third_party/boringssl/include/openssl/span.h ) s.files += %w( third_party/boringssl/include/openssl/span.h )
s.files += %w( third_party/boringssl/include/openssl/srtp.h ) s.files += %w( third_party/boringssl/include/openssl/srtp.h )
s.files += %w( third_party/boringssl/include/openssl/ssl.h ) s.files += %w( third_party/boringssl/include/openssl/ssl.h )
@ -1182,12 +1182,15 @@ Gem::Specification.new do |s|
s.files += %w( third_party/boringssl/crypto/evp/p_ed25519_asn1.c ) s.files += %w( third_party/boringssl/crypto/evp/p_ed25519_asn1.c )
s.files += %w( third_party/boringssl/crypto/evp/p_rsa.c ) s.files += %w( third_party/boringssl/crypto/evp/p_rsa.c )
s.files += %w( third_party/boringssl/crypto/evp/p_rsa_asn1.c ) s.files += %w( third_party/boringssl/crypto/evp/p_rsa_asn1.c )
s.files += %w( third_party/boringssl/crypto/evp/p_x25519.c )
s.files += %w( third_party/boringssl/crypto/evp/p_x25519_asn1.c )
s.files += %w( third_party/boringssl/crypto/evp/pbkdf.c ) s.files += %w( third_party/boringssl/crypto/evp/pbkdf.c )
s.files += %w( third_party/boringssl/crypto/evp/print.c ) s.files += %w( third_party/boringssl/crypto/evp/print.c )
s.files += %w( third_party/boringssl/crypto/evp/scrypt.c ) s.files += %w( third_party/boringssl/crypto/evp/scrypt.c )
s.files += %w( third_party/boringssl/crypto/evp/sign.c ) s.files += %w( third_party/boringssl/crypto/evp/sign.c )
s.files += %w( third_party/boringssl/crypto/ex_data.c ) s.files += %w( third_party/boringssl/crypto/ex_data.c )
s.files += %w( third_party/boringssl/crypto/fipsmodule/bcm.c ) s.files += %w( third_party/boringssl/crypto/fipsmodule/bcm.c )
s.files += %w( third_party/boringssl/crypto/fipsmodule/fips_shared_support.c )
s.files += %w( third_party/boringssl/crypto/fipsmodule/is_fips.c ) s.files += %w( third_party/boringssl/crypto/fipsmodule/is_fips.c )
s.files += %w( third_party/boringssl/crypto/hkdf/hkdf.c ) s.files += %w( third_party/boringssl/crypto/hkdf/hkdf.c )
s.files += %w( third_party/boringssl/crypto/hrss/hrss.c ) s.files += %w( third_party/boringssl/crypto/hrss/hrss.c )
@ -1222,6 +1225,7 @@ Gem::Specification.new do |s|
s.files += %w( third_party/boringssl/crypto/refcount_lock.c ) s.files += %w( third_party/boringssl/crypto/refcount_lock.c )
s.files += %w( third_party/boringssl/crypto/rsa_extra/rsa_asn1.c ) s.files += %w( third_party/boringssl/crypto/rsa_extra/rsa_asn1.c )
s.files += %w( third_party/boringssl/crypto/rsa_extra/rsa_print.c ) s.files += %w( third_party/boringssl/crypto/rsa_extra/rsa_print.c )
s.files += %w( third_party/boringssl/crypto/siphash/siphash.c )
s.files += %w( third_party/boringssl/crypto/stack/stack.c ) s.files += %w( third_party/boringssl/crypto/stack/stack.c )
s.files += %w( third_party/boringssl/crypto/thread.c ) s.files += %w( third_party/boringssl/crypto/thread.c )
s.files += %w( third_party/boringssl/crypto/thread_none.c ) s.files += %w( third_party/boringssl/crypto/thread_none.c )
@ -1346,8 +1350,8 @@ Gem::Specification.new do |s|
s.files += %w( third_party/boringssl/ssl/tls_method.cc ) s.files += %w( third_party/boringssl/ssl/tls_method.cc )
s.files += %w( third_party/boringssl/ssl/tls_record.cc ) s.files += %w( third_party/boringssl/ssl/tls_record.cc )
s.files += %w( third_party/boringssl/third_party/fiat/curve25519.c ) s.files += %w( third_party/boringssl/third_party/fiat/curve25519.c )
s.files += %w( third_party/boringssl/third_party/sike/P503.c )
s.files += %w( third_party/boringssl/third_party/sike/asm/fp_generic.c ) s.files += %w( third_party/boringssl/third_party/sike/asm/fp_generic.c )
s.files += %w( third_party/boringssl/third_party/sike/curve_params.c )
s.files += %w( third_party/boringssl/third_party/sike/fpx.c ) s.files += %w( third_party/boringssl/third_party/sike/fpx.c )
s.files += %w( third_party/boringssl/third_party/sike/isogeny.c ) s.files += %w( third_party/boringssl/third_party/sike/isogeny.c )
s.files += %w( third_party/boringssl/third_party/sike/sike.c ) s.files += %w( third_party/boringssl/third_party/sike/sike.c )

@ -2053,12 +2053,15 @@
'third_party/boringssl/crypto/evp/p_ed25519_asn1.c', 'third_party/boringssl/crypto/evp/p_ed25519_asn1.c',
'third_party/boringssl/crypto/evp/p_rsa.c', 'third_party/boringssl/crypto/evp/p_rsa.c',
'third_party/boringssl/crypto/evp/p_rsa_asn1.c', 'third_party/boringssl/crypto/evp/p_rsa_asn1.c',
'third_party/boringssl/crypto/evp/p_x25519.c',
'third_party/boringssl/crypto/evp/p_x25519_asn1.c',
'third_party/boringssl/crypto/evp/pbkdf.c', 'third_party/boringssl/crypto/evp/pbkdf.c',
'third_party/boringssl/crypto/evp/print.c', 'third_party/boringssl/crypto/evp/print.c',
'third_party/boringssl/crypto/evp/scrypt.c', 'third_party/boringssl/crypto/evp/scrypt.c',
'third_party/boringssl/crypto/evp/sign.c', 'third_party/boringssl/crypto/evp/sign.c',
'third_party/boringssl/crypto/ex_data.c', 'third_party/boringssl/crypto/ex_data.c',
'third_party/boringssl/crypto/fipsmodule/bcm.c', 'third_party/boringssl/crypto/fipsmodule/bcm.c',
'third_party/boringssl/crypto/fipsmodule/fips_shared_support.c',
'third_party/boringssl/crypto/fipsmodule/is_fips.c', 'third_party/boringssl/crypto/fipsmodule/is_fips.c',
'third_party/boringssl/crypto/hkdf/hkdf.c', 'third_party/boringssl/crypto/hkdf/hkdf.c',
'third_party/boringssl/crypto/hrss/hrss.c', 'third_party/boringssl/crypto/hrss/hrss.c',
@ -2093,6 +2096,7 @@
'third_party/boringssl/crypto/refcount_lock.c', 'third_party/boringssl/crypto/refcount_lock.c',
'third_party/boringssl/crypto/rsa_extra/rsa_asn1.c', 'third_party/boringssl/crypto/rsa_extra/rsa_asn1.c',
'third_party/boringssl/crypto/rsa_extra/rsa_print.c', 'third_party/boringssl/crypto/rsa_extra/rsa_print.c',
'third_party/boringssl/crypto/siphash/siphash.c',
'third_party/boringssl/crypto/stack/stack.c', 'third_party/boringssl/crypto/stack/stack.c',
'third_party/boringssl/crypto/thread.c', 'third_party/boringssl/crypto/thread.c',
'third_party/boringssl/crypto/thread_none.c', 'third_party/boringssl/crypto/thread_none.c',
@ -2217,8 +2221,8 @@
'third_party/boringssl/ssl/tls_method.cc', 'third_party/boringssl/ssl/tls_method.cc',
'third_party/boringssl/ssl/tls_record.cc', 'third_party/boringssl/ssl/tls_record.cc',
'third_party/boringssl/third_party/fiat/curve25519.c', 'third_party/boringssl/third_party/fiat/curve25519.c',
'third_party/boringssl/third_party/sike/P503.c',
'third_party/boringssl/third_party/sike/asm/fp_generic.c', 'third_party/boringssl/third_party/sike/asm/fp_generic.c',
'third_party/boringssl/third_party/sike/curve_params.c',
'third_party/boringssl/third_party/sike/fpx.c', 'third_party/boringssl/third_party/sike/fpx.c',
'third_party/boringssl/third_party/sike/isogeny.c', 'third_party/boringssl/third_party/sike/isogeny.c',
'third_party/boringssl/third_party/sike/sike.c', 'third_party/boringssl/third_party/sike/sike.c',

@ -969,7 +969,6 @@
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/md5/internal.h" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/md5/internal.h" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/md5/md5.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/md5/md5.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/modes/cbc.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/modes/cbc.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/modes/ccm.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/modes/cfb.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/modes/cfb.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/modes/ctr.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/modes/ctr.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/modes/gcm.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/modes/gcm.c" role="src" />
@ -1069,6 +1068,7 @@
<file baseinstalldir="/" name="third_party/boringssl/include/openssl/rsa.h" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/include/openssl/rsa.h" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/include/openssl/safestack.h" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/include/openssl/safestack.h" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/include/openssl/sha.h" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/include/openssl/sha.h" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/include/openssl/siphash.h" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/include/openssl/span.h" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/include/openssl/span.h" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/include/openssl/srtp.h" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/include/openssl/srtp.h" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/include/openssl/ssl.h" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/include/openssl/ssl.h" role="src" />
@ -1187,12 +1187,15 @@
<file baseinstalldir="/" name="third_party/boringssl/crypto/evp/p_ed25519_asn1.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/evp/p_ed25519_asn1.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/evp/p_rsa.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/evp/p_rsa.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/evp/p_rsa_asn1.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/evp/p_rsa_asn1.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/evp/p_x25519.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/evp/p_x25519_asn1.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/evp/pbkdf.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/evp/pbkdf.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/evp/print.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/evp/print.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/evp/scrypt.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/evp/scrypt.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/evp/sign.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/evp/sign.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/ex_data.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/ex_data.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/bcm.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/bcm.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/fips_shared_support.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/is_fips.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/fipsmodule/is_fips.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/hkdf/hkdf.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/hkdf/hkdf.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/hrss/hrss.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/hrss/hrss.c" role="src" />
@ -1227,6 +1230,7 @@
<file baseinstalldir="/" name="third_party/boringssl/crypto/refcount_lock.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/refcount_lock.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/rsa_extra/rsa_asn1.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/rsa_extra/rsa_asn1.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/rsa_extra/rsa_print.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/rsa_extra/rsa_print.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/siphash/siphash.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/stack/stack.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/stack/stack.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/thread.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/thread.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/crypto/thread_none.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/crypto/thread_none.c" role="src" />
@ -1351,8 +1355,8 @@
<file baseinstalldir="/" name="third_party/boringssl/ssl/tls_method.cc" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/ssl/tls_method.cc" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/ssl/tls_record.cc" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/ssl/tls_record.cc" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/third_party/fiat/curve25519.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/third_party/fiat/curve25519.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/third_party/sike/P503.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/third_party/sike/asm/fp_generic.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/third_party/sike/asm/fp_generic.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/third_party/sike/curve_params.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/third_party/sike/fpx.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/third_party/sike/fpx.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/third_party/sike/isogeny.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/third_party/sike/isogeny.c" role="src" />
<file baseinstalldir="/" name="third_party/boringssl/third_party/sike/sike.c" role="src" /> <file baseinstalldir="/" name="third_party/boringssl/third_party/sike/sike.c" role="src" />

File diff suppressed because one or more lines are too long

@ -75,54 +75,54 @@ const uint32_t kOpenSSLReasonValues[] = {
0xc3b00ea, 0xc3b00ea,
0xc3b88d6, 0xc3b88d6,
0x10320847, 0x10320847,
0x10329574, 0x1032959f,
0x10331580, 0x103315ab,
0x10339599, 0x103395c4,
0x103415ac, 0x103415d7,
0x10348f27, 0x10348f27,
0x10350c60, 0x10350c60,
0x103595bf, 0x103595ea,
0x103615e9, 0x10361614,
0x103695fc, 0x10369627,
0x1037161b, 0x10371646,
0x10379634, 0x1037965f,
0x10381649, 0x10381674,
0x10389667, 0x10389692,
0x10391676, 0x103916a1,
0x10399692, 0x103996bd,
0x103a16ad, 0x103a16d8,
0x103a96bc, 0x103a96e7,
0x103b16d8, 0x103b1703,
0x103b96f3, 0x103b971e,
0x103c1719, 0x103c1744,
0x103c80ea, 0x103c80ea,
0x103d172a, 0x103d1755,
0x103d973e, 0x103d9769,
0x103e175d, 0x103e1788,
0x103e976c, 0x103e9797,
0x103f1783, 0x103f17ae,
0x103f9796, 0x103f97c1,
0x10400c24, 0x10400c24,
0x104097a9, 0x104097d4,
0x104117c7, 0x104117f2,
0x104197da, 0x10419805,
0x104217f4, 0x1042181f,
0x10429804, 0x1042982f,
0x10431818, 0x10431843,
0x1043982e, 0x10439859,
0x10441846, 0x10441871,
0x1044985b, 0x10449886,
0x1045186f, 0x1045189a,
0x10459881, 0x104598ac,
0x104605fd, 0x104605fd,
0x1046894f, 0x1046894f,
0x10471896, 0x104718c1,
0x104798ad, 0x104798d8,
0x104818c2, 0x104818ed,
0x104898d0, 0x104898fb,
0x10490e73, 0x10490e73,
0x1049970a, 0x10499735,
0x104a15d4, 0x104a15ff,
0x14320c07, 0x14320c07,
0x14328c15, 0x14328c15,
0x14330c24, 0x14330c24,
@ -145,41 +145,43 @@ const uint32_t kOpenSSLReasonValues[] = {
0x1838905b, 0x1838905b,
0x18390a75, 0x18390a75,
0x1839906b, 0x1839906b,
0x183a1080, 0x183a1091,
0x183a90a6, 0x183a90b7,
0x183b0c7f, 0x183b0c7f,
0x183b90db, 0x183b9106,
0x183c10ed, 0x183c1118,
0x183c90f8, 0x183c9123,
0x183d1108, 0x183d1133,
0x183d9119, 0x183d9144,
0x183e112a, 0x183e1155,
0x183e913c, 0x183e9167,
0x183f1165, 0x183f1190,
0x183f917e, 0x183f91a9,
0x18401196, 0x184011c1,
0x184086d5, 0x184086d5,
0x184110c9, 0x184110da,
0x18419094, 0x184190a5,
0x184210b3, 0x184210c4,
0x18428c6c, 0x18428c6c,
0x203211d0, 0x18431080,
0x203291bd, 0x184390ec,
0x243211dc, 0x203211fb,
0x203291e8,
0x24321207,
0x24328995, 0x24328995,
0x243311ee, 0x24331219,
0x243391fb, 0x24339226,
0x24341208, 0x24341233,
0x2434921a, 0x24349245,
0x24351229, 0x24351254,
0x24359246, 0x24359271,
0x24361253, 0x2436127e,
0x24369261, 0x2436928c,
0x2437126f, 0x2437129a,
0x2437927d, 0x243792a8,
0x24381286, 0x243812b1,
0x24389293, 0x243892be,
0x243912a6, 0x243912d1,
0x28320c54, 0x28320c54,
0x28328c7f, 0x28328c7f,
0x28330c24, 0x28330c24,
@ -188,44 +190,44 @@ const uint32_t kOpenSSLReasonValues[] = {
0x283480ac, 0x283480ac,
0x283500ea, 0x283500ea,
0x28358c6c, 0x28358c6c,
0x2c322ec7, 0x2c322f0c,
0x2c3292bd, 0x2c3292e8,
0x2c332ed5, 0x2c332f1a,
0x2c33aee7, 0x2c33af2c,
0x2c342efb, 0x2c342f40,
0x2c34af0d, 0x2c34af52,
0x2c352f28, 0x2c352f6d,
0x2c35af3a, 0x2c35af7f,
0x2c362f4d, 0x2c362f92,
0x2c36832d, 0x2c36832d,
0x2c372f5a, 0x2c372f9f,
0x2c37af6c, 0x2c37afb1,
0x2c382f91, 0x2c382fd6,
0x2c38afa8, 0x2c38afed,
0x2c392fb6, 0x2c392ffb,
0x2c39afc6, 0x2c39b00b,
0x2c3a2fd8, 0x2c3a301d,
0x2c3aafec, 0x2c3ab031,
0x2c3b2ffd, 0x2c3b3042,
0x2c3bb01c, 0x2c3bb061,
0x2c3c12cf, 0x2c3c12fa,
0x2c3c92e5, 0x2c3c9310,
0x2c3d3030, 0x2c3d3075,
0x2c3d92fe, 0x2c3d9329,
0x2c3e304d, 0x2c3e3092,
0x2c3eb05b, 0x2c3eb0a0,
0x2c3f3073, 0x2c3f30b8,
0x2c3fb08b, 0x2c3fb0d0,
0x2c4030b5, 0x2c4030fa,
0x2c4091d0, 0x2c4091fb,
0x2c4130c6, 0x2c41310b,
0x2c41b0d9, 0x2c41b11e,
0x2c421196, 0x2c4211c1,
0x2c42b0ea, 0x2c42b12f,
0x2c430722, 0x2c430722,
0x2c43b00e, 0x2c43b053,
0x2c442f7f, 0x2c442fc4,
0x2c44b098, 0x2c44b0dd,
0x30320000, 0x30320000,
0x30328015, 0x30328015,
0x3033001f, 0x3033001f,
@ -360,240 +362,241 @@ const uint32_t kOpenSSLReasonValues[] = {
0x3c418d67, 0x3c418d67,
0x3c420e73, 0x3c420e73,
0x3c428dfd, 0x3c428dfd,
0x40321946, 0x40321971,
0x4032995c, 0x40329987,
0x4033198a, 0x403319b5,
0x40339994, 0x403399bf,
0x403419ab, 0x403419d6,
0x403499c9, 0x403499f4,
0x403519d9, 0x40351a04,
0x403599eb, 0x40359a16,
0x403619f8, 0x40361a23,
0x40369a04, 0x40369a2f,
0x40371a19, 0x40371a44,
0x40379a2b, 0x40379a56,
0x40381a36, 0x40381a61,
0x40389a48, 0x40389a73,
0x40390f27, 0x40390f27,
0x40399a58, 0x40399a83,
0x403a1a6b, 0x403a1a96,
0x403a9a8c, 0x403a9ab7,
0x403b1a9d, 0x403b1ac8,
0x403b9aad, 0x403b9ad8,
0x403c0064, 0x403c0064,
0x403c8083, 0x403c8083,
0x403d1b31, 0x403d1b5c,
0x403d9b47, 0x403d9b72,
0x403e1b56, 0x403e1b81,
0x403e9b8e, 0x403e9bb9,
0x403f1ba8, 0x403f1bd3,
0x403f9bd0, 0x403f9bfb,
0x40401be5, 0x40401c10,
0x40409bf9, 0x40409c24,
0x40411c16, 0x40411c41,
0x40419c31, 0x40419c5c,
0x40421c4a, 0x40421c75,
0x40429c5d, 0x40429c88,
0x40431c71, 0x40431c9c,
0x40439c89, 0x40439cb4,
0x40441ca0, 0x40441ccb,
0x404480ac, 0x404480ac,
0x40451cb5, 0x40451ce0,
0x40459cc7, 0x40459cf2,
0x40461ceb, 0x40461d16,
0x40469d0b, 0x40469d36,
0x40471d19, 0x40471d44,
0x40479d40, 0x40479d6b,
0x40481db1, 0x40481ddc,
0x40489de4, 0x40489e0f,
0x40491dfb, 0x40491e26,
0x40499e15, 0x40499e40,
0x404a1e2c, 0x404a1e57,
0x404a9e4a, 0x404a9e75,
0x404b1e62, 0x404b1e8d,
0x404b9e79, 0x404b9ea4,
0x404c1e8f, 0x404c1eba,
0x404c9ea1, 0x404c9ecc,
0x404d1ec2, 0x404d1eed,
0x404d9efb, 0x404d9f26,
0x404e1f0f, 0x404e1f3a,
0x404e9f1c, 0x404e9f47,
0x404f1f49, 0x404f1f8e,
0x404f9f8f, 0x404f9fd4,
0x40501fe6, 0x4050202b,
0x40509ffa, 0x4050a03f,
0x4051202d, 0x40512072,
0x4052203d, 0x40522082,
0x4052a061, 0x4052a0a6,
0x40532079, 0x405320be,
0x4053a08c, 0x4053a0d1,
0x405420a1, 0x405420e6,
0x4054a0c4, 0x4054a109,
0x405520d2, 0x40552117,
0x4055a10f, 0x4055a154,
0x4056211c, 0x40562161,
0x4056a135, 0x4056a17a,
0x4057214d, 0x40572192,
0x4057a160, 0x4057a1a5,
0x40582175, 0x405821ba,
0x4058a19c, 0x4058a1e1,
0x405921cb, 0x40592210,
0x4059a1f8, 0x4059a23d,
0x405a220c, 0x405a2251,
0x405aa21c, 0x405aa261,
0x405b2234, 0x405b2279,
0x405ba245, 0x405ba28a,
0x405c2258, 0x405c229d,
0x405ca297, 0x405ca2dc,
0x405d22a4, 0x405d22e9,
0x405da2c9, 0x405da30e,
0x405e2307, 0x405e234c,
0x405e8ab3, 0x405e8ab3,
0x405f2328, 0x405f236d,
0x405fa335, 0x405fa37a,
0x40602343, 0x40602388,
0x4060a365, 0x4060a3aa,
0x406123c6, 0x4061240b,
0x4061a3fe, 0x4061a443,
0x40622415, 0x4062245a,
0x4062a426, 0x4062a46b,
0x4063244b, 0x40632490,
0x4063a460, 0x4063a4a5,
0x40642477, 0x406424bc,
0x4064a4a3, 0x4064a4e8,
0x406524be, 0x40652503,
0x4065a4d5, 0x4065a51a,
0x406624ed, 0x40662532,
0x4066a517, 0x4066a55c,
0x40672542, 0x40672587,
0x4067a587, 0x4067a5cc,
0x406825cf, 0x40682614,
0x4068a5f0, 0x4068a635,
0x40692622, 0x40692667,
0x4069a650, 0x4069a695,
0x406a2671, 0x406a26b6,
0x406aa691, 0x406aa6d6,
0x406b2819, 0x406b285e,
0x406ba83c, 0x406ba881,
0x406c2852, 0x406c2897,
0x406caaf5, 0x406cab3a,
0x406d2b24, 0x406d2b69,
0x406dab4c, 0x406dab91,
0x406e2b7a, 0x406e2bbf,
0x406eabc7, 0x406eac0c,
0x406f2c02, 0x406f2c47,
0x406fac3a, 0x406fac7f,
0x40702c4d, 0x40702c92,
0x4070ac6a, 0x4070acaf,
0x40710802, 0x40710802,
0x4071ac7c, 0x4071acc1,
0x40722c8f, 0x40722cd4,
0x4072acc5, 0x4072ad0a,
0x40732cdd, 0x40732d22,
0x407394cf, 0x407394fa,
0x40742cf1, 0x40742d36,
0x4074ad0b, 0x4074ad50,
0x40752d1c, 0x40752d61,
0x4075ad30, 0x4075ad75,
0x40762d3e, 0x40762d83,
0x40769293, 0x407692be,
0x40772d63, 0x40772da8,
0x4077ad85, 0x4077adca,
0x40782da0, 0x40782de5,
0x4078add9, 0x4078ae1e,
0x40792df0, 0x40792e35,
0x4079ae06, 0x4079ae4b,
0x407a2e32, 0x407a2e77,
0x407aae45, 0x407aae8a,
0x407b2e5a, 0x407b2e9f,
0x407bae6c, 0x407baeb1,
0x407c2e9d, 0x407c2ee2,
0x407caea6, 0x407caeeb,
0x407d260b, 0x407d2650,
0x407d9f9f, 0x407d9fe4,
0x407e2db5, 0x407e2dfa,
0x407ea1ac, 0x407ea1f1,
0x407f1d2d, 0x407f1d58,
0x407f9ad3, 0x407f9afe,
0x40801f59, 0x40801f9e,
0x40809d55, 0x40809d80,
0x4081204f, 0x40812094,
0x40819f33, 0x40819f78,
0x40822b65, 0x40822baa,
0x40829ab9, 0x40829ae4,
0x40832187, 0x408321cc,
0x4083a488, 0x4083a4cd,
0x40841d69, 0x40841d94,
0x4084a1e4, 0x4084a229,
0x40852269, 0x408522ae,
0x4085a38d, 0x4085a3d2,
0x408622e9, 0x4086232e,
0x40869fb9, 0x40869ffe,
0x40872bab, 0x40872bf0,
0x4087a3db, 0x4087a420,
0x40881b1a, 0x40881b45,
0x4088a59a, 0x4088a5df,
0x40891b69, 0x40891b94,
0x40899af6, 0x40899b21,
0x408a288a, 0x408a28cf,
0x408a98e7, 0x408a9912,
0x408b2e81, 0x408b2ec6,
0x408bac17, 0x408bac5c,
0x408c2279, 0x408c22be,
0x408c9903, 0x408c992e,
0x408d1dca, 0x408d1df5,
0x408d9d9b, 0x408d9dc6,
0x408e1ee4, 0x408e1f0f,
0x408ea0ef, 0x408ea134,
0x408f25ae, 0x408f25f3,
0x408fa3a9, 0x408fa3ee,
0x40902563, 0x409025a8,
0x4090a2bb, 0x4090a300,
0x40912872, 0x409128b7,
0x40919929, 0x40919954,
0x40921bb6, 0x40921be1,
0x4092abe6, 0x4092ac2b,
0x40932ca8, 0x40932ced,
0x40939fca, 0x4093a00f,
0x40941d7d, 0x40941da8,
0x4094a8a3, 0x4094a8e8,
0x40952437, 0x4095247c,
0x4095ae12, 0x4095ae57,
0x40962b92, 0x40962bd7,
0x40969f72, 0x40969fb7,
0x40972015, 0x4097205a,
0x41f42744, 0x40979f5e,
0x41f927d6, 0x41f42789,
0x41fe26c9, 0x41f9281b,
0x41fea8e6, 0x41fe270e,
0x41ff29d7, 0x41fea92b,
0x4203275d, 0x41ff2a1c,
0x4208277f, 0x420327a2,
0x4208a7bb, 0x420827c4,
0x420926ad, 0x4208a800,
0x4209a7f5, 0x420926f2,
0x420a2704, 0x4209a83a,
0x420aa6e4, 0x420a2749,
0x420b2724, 0x420aa729,
0x420ba79d, 0x420b2769,
0x420c29f3, 0x420ba7e2,
0x420ca8b3, 0x420c2a38,
0x420d28cd, 0x420ca8f8,
0x420da904, 0x420d2912,
0x4212291e, 0x420da949,
0x421729ba, 0x42122963,
0x4217a960, 0x421729ff,
0x421c2982, 0x4217a9a5,
0x421f293d, 0x421c29c7,
0x42212a0a, 0x421f2982,
0x4226299d, 0x42212a4f,
0x422b2ad9, 0x422629e2,
0x422baa87, 0x422b2b1e,
0x422c2ac1, 0x422baacc,
0x422caa46, 0x422c2b06,
0x422d2a25, 0x422caa8b,
0x422daaa6, 0x422d2a6a,
0x422e2a6c, 0x422daaeb,
0x422e2ab1,
0x4432072d, 0x4432072d,
0x4432873c, 0x4432873c,
0x44330748, 0x44330748,
@ -611,106 +614,106 @@ const uint32_t kOpenSSLReasonValues[] = {
0x44390802, 0x44390802,
0x44398810, 0x44398810,
0x443a0823, 0x443a0823,
0x483212bd, 0x483212e8,
0x483292cf, 0x483292fa,
0x483312e5, 0x48331310,
0x483392fe, 0x48339329,
0x4c321323, 0x4c32134e,
0x4c329333, 0x4c32935e,
0x4c331346, 0x4c331371,
0x4c339366, 0x4c339391,
0x4c3400ac, 0x4c3400ac,
0x4c3480ea, 0x4c3480ea,
0x4c351372, 0x4c35139d,
0x4c359380, 0x4c3593ab,
0x4c36139c, 0x4c3613c7,
0x4c3693c2, 0x4c3693ed,
0x4c3713d1, 0x4c3713fc,
0x4c3793df, 0x4c37940a,
0x4c3813f4, 0x4c38141f,
0x4c389400, 0x4c38942b,
0x4c391420, 0x4c39144b,
0x4c39944a, 0x4c399475,
0x4c3a1463, 0x4c3a148e,
0x4c3a947c, 0x4c3a94a7,
0x4c3b05fd, 0x4c3b05fd,
0x4c3b9495, 0x4c3b94c0,
0x4c3c14a7, 0x4c3c14d2,
0x4c3c94b6, 0x4c3c94e1,
0x4c3d14cf, 0x4c3d14fa,
0x4c3d8c47, 0x4c3d8c47,
0x4c3e153c, 0x4c3e1567,
0x4c3e94de, 0x4c3e9509,
0x4c3f155e, 0x4c3f1589,
0x4c3f9293, 0x4c3f92be,
0x4c4014f4, 0x4c40151f,
0x4c40930f, 0x4c40933a,
0x4c41152c, 0x4c411557,
0x4c4193af, 0x4c4193da,
0x4c421518, 0x4c421543,
0x503230fc, 0x50323141,
0x5032b10b, 0x5032b150,
0x50333116, 0x5033315b,
0x5033b126, 0x5033b16b,
0x5034313f, 0x50343184,
0x5034b159, 0x5034b19e,
0x50353167, 0x503531ac,
0x5035b17d, 0x5035b1c2,
0x5036318f, 0x503631d4,
0x5036b1a5, 0x5036b1ea,
0x503731be, 0x50373203,
0x5037b1d1, 0x5037b216,
0x503831e9, 0x5038322e,
0x5038b1fa, 0x5038b23f,
0x5039320f, 0x50393254,
0x5039b223, 0x5039b268,
0x503a3243, 0x503a3288,
0x503ab259, 0x503ab29e,
0x503b3271, 0x503b32b6,
0x503bb283, 0x503bb2c8,
0x503c329f, 0x503c32e4,
0x503cb2b6, 0x503cb2fb,
0x503d32cf, 0x503d3314,
0x503db2e5, 0x503db32a,
0x503e32f2, 0x503e3337,
0x503eb308, 0x503eb34d,
0x503f331a, 0x503f335f,
0x503f837b, 0x503f837b,
0x5040332d, 0x50403372,
0x5040b33d, 0x5040b382,
0x50413357, 0x5041339c,
0x5041b366, 0x5041b3ab,
0x50423380, 0x504233c5,
0x5042b39d, 0x5042b3e2,
0x504333ad, 0x504333f2,
0x5043b3bd, 0x5043b402,
0x504433cc, 0x50443411,
0x50448431, 0x50448431,
0x504533e0, 0x50453425,
0x5045b3fe, 0x5045b443,
0x50463411, 0x50463456,
0x5046b427, 0x5046b46c,
0x50473439, 0x5047347e,
0x5047b44e, 0x5047b493,
0x50483474, 0x504834b9,
0x5048b482, 0x5048b4c7,
0x50493495, 0x504934da,
0x5049b4aa, 0x5049b4ef,
0x504a34c0, 0x504a3505,
0x504ab4d0, 0x504ab515,
0x504b34f0, 0x504b3535,
0x504bb503, 0x504bb548,
0x504c3526, 0x504c356b,
0x504cb554, 0x504cb599,
0x504d3566, 0x504d35ab,
0x504db583, 0x504db5c8,
0x504e359e, 0x504e35e3,
0x504eb5ba, 0x504eb5ff,
0x504f35cc, 0x504f3611,
0x504fb5e3, 0x504fb628,
0x505035f2, 0x50503637,
0x505086f1, 0x505086f1,
0x50513605, 0x5051364a,
0x58320f65, 0x58320f65,
0x68320f27, 0x68320f27,
0x68328c7f, 0x68328c7f,
@ -751,7 +754,7 @@ const uint32_t kOpenSSLReasonValues[] = {
0x783d8b4c, 0x783d8b4c,
0x783e0aa2, 0x783e0aa2,
0x783e8a54, 0x783e8a54,
0x7c3211ac, 0x7c3211d7,
}; };
const size_t kOpenSSLReasonValuesLen = sizeof(kOpenSSLReasonValues) / sizeof(kOpenSSLReasonValues[0]); const size_t kOpenSSLReasonValuesLen = sizeof(kOpenSSLReasonValues) / sizeof(kOpenSSLReasonValues[0]);
@ -976,11 +979,13 @@ const char kOpenSSLReasonStringData[] =
"INVALID_KEYBITS\0" "INVALID_KEYBITS\0"
"INVALID_MGF1_MD\0" "INVALID_MGF1_MD\0"
"INVALID_PADDING_MODE\0" "INVALID_PADDING_MODE\0"
"INVALID_PEER_KEY\0"
"INVALID_PSS_SALTLEN\0" "INVALID_PSS_SALTLEN\0"
"INVALID_SIGNATURE\0" "INVALID_SIGNATURE\0"
"KEYS_NOT_SET\0" "KEYS_NOT_SET\0"
"MEMORY_LIMIT_EXCEEDED\0" "MEMORY_LIMIT_EXCEEDED\0"
"NOT_A_PRIVATE_KEY\0" "NOT_A_PRIVATE_KEY\0"
"NOT_XOF_OR_INVALID_LENGTH\0"
"NO_DEFAULT_DIGEST\0" "NO_DEFAULT_DIGEST\0"
"NO_KEY_SET\0" "NO_KEY_SET\0"
"NO_MDC2_SUPPORT\0" "NO_MDC2_SUPPORT\0"
@ -1151,6 +1156,7 @@ const char kOpenSSLReasonStringData[] =
"HTTPS_PROXY_REQUEST\0" "HTTPS_PROXY_REQUEST\0"
"HTTP_REQUEST\0" "HTTP_REQUEST\0"
"INAPPROPRIATE_FALLBACK\0" "INAPPROPRIATE_FALLBACK\0"
"INCONSISTENT_CLIENT_HELLO\0"
"INVALID_ALPN_PROTOCOL\0" "INVALID_ALPN_PROTOCOL\0"
"INVALID_COMMAND\0" "INVALID_COMMAND\0"
"INVALID_COMPRESSION_LIST\0" "INVALID_COMPRESSION_LIST\0"

@ -528,12 +528,15 @@ CORE_SOURCE_FILES = [
'third_party/boringssl/crypto/evp/p_ed25519_asn1.c', 'third_party/boringssl/crypto/evp/p_ed25519_asn1.c',
'third_party/boringssl/crypto/evp/p_rsa.c', 'third_party/boringssl/crypto/evp/p_rsa.c',
'third_party/boringssl/crypto/evp/p_rsa_asn1.c', 'third_party/boringssl/crypto/evp/p_rsa_asn1.c',
'third_party/boringssl/crypto/evp/p_x25519.c',
'third_party/boringssl/crypto/evp/p_x25519_asn1.c',
'third_party/boringssl/crypto/evp/pbkdf.c', 'third_party/boringssl/crypto/evp/pbkdf.c',
'third_party/boringssl/crypto/evp/print.c', 'third_party/boringssl/crypto/evp/print.c',
'third_party/boringssl/crypto/evp/scrypt.c', 'third_party/boringssl/crypto/evp/scrypt.c',
'third_party/boringssl/crypto/evp/sign.c', 'third_party/boringssl/crypto/evp/sign.c',
'third_party/boringssl/crypto/ex_data.c', 'third_party/boringssl/crypto/ex_data.c',
'third_party/boringssl/crypto/fipsmodule/bcm.c', 'third_party/boringssl/crypto/fipsmodule/bcm.c',
'third_party/boringssl/crypto/fipsmodule/fips_shared_support.c',
'third_party/boringssl/crypto/fipsmodule/is_fips.c', 'third_party/boringssl/crypto/fipsmodule/is_fips.c',
'third_party/boringssl/crypto/hkdf/hkdf.c', 'third_party/boringssl/crypto/hkdf/hkdf.c',
'third_party/boringssl/crypto/hrss/hrss.c', 'third_party/boringssl/crypto/hrss/hrss.c',
@ -568,6 +571,7 @@ CORE_SOURCE_FILES = [
'third_party/boringssl/crypto/refcount_lock.c', 'third_party/boringssl/crypto/refcount_lock.c',
'third_party/boringssl/crypto/rsa_extra/rsa_asn1.c', 'third_party/boringssl/crypto/rsa_extra/rsa_asn1.c',
'third_party/boringssl/crypto/rsa_extra/rsa_print.c', 'third_party/boringssl/crypto/rsa_extra/rsa_print.c',
'third_party/boringssl/crypto/siphash/siphash.c',
'third_party/boringssl/crypto/stack/stack.c', 'third_party/boringssl/crypto/stack/stack.c',
'third_party/boringssl/crypto/thread.c', 'third_party/boringssl/crypto/thread.c',
'third_party/boringssl/crypto/thread_none.c', 'third_party/boringssl/crypto/thread_none.c',
@ -692,8 +696,8 @@ CORE_SOURCE_FILES = [
'third_party/boringssl/ssl/tls_method.cc', 'third_party/boringssl/ssl/tls_method.cc',
'third_party/boringssl/ssl/tls_record.cc', 'third_party/boringssl/ssl/tls_record.cc',
'third_party/boringssl/third_party/fiat/curve25519.c', 'third_party/boringssl/third_party/fiat/curve25519.c',
'third_party/boringssl/third_party/sike/P503.c',
'third_party/boringssl/third_party/sike/asm/fp_generic.c', 'third_party/boringssl/third_party/sike/asm/fp_generic.c',
'third_party/boringssl/third_party/sike/curve_params.c',
'third_party/boringssl/third_party/sike/fpx.c', 'third_party/boringssl/third_party/sike/fpx.c',
'third_party/boringssl/third_party/sike/isogeny.c', 'third_party/boringssl/third_party/sike/isogeny.c',
'third_party/boringssl/third_party/sike/sike.c', 'third_party/boringssl/third_party/sike/sike.c',

Loading…
Cancel
Save