grpc 1.10.0.pre1 → 1.10.0.pre2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +3 -3
  3. data/src/core/ext/filters/max_age/max_age_filter.cc +3 -0
  4. data/src/core/lib/surface/version.cc +1 -1
  5. data/src/ruby/lib/grpc/version.rb +1 -1
  6. data/third_party/boringssl/crypto/fipsmodule/aes/aes.c +1100 -0
  7. data/third_party/boringssl/crypto/fipsmodule/aes/key_wrap.c +138 -0
  8. data/third_party/boringssl/crypto/fipsmodule/aes/mode_wrappers.c +112 -0
  9. data/third_party/boringssl/crypto/fipsmodule/bn/add.c +375 -0
  10. data/third_party/boringssl/crypto/fipsmodule/bn/asm/x86_64-gcc.c +537 -0
  11. data/third_party/boringssl/crypto/fipsmodule/bn/bn.c +370 -0
  12. data/third_party/boringssl/crypto/fipsmodule/bn/bytes.c +269 -0
  13. data/third_party/boringssl/crypto/fipsmodule/bn/cmp.c +239 -0
  14. data/third_party/boringssl/crypto/fipsmodule/bn/ctx.c +303 -0
  15. data/third_party/boringssl/crypto/fipsmodule/bn/div.c +726 -0
  16. data/third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c +1233 -0
  17. data/third_party/boringssl/crypto/fipsmodule/bn/gcd.c +627 -0
  18. data/third_party/boringssl/crypto/fipsmodule/bn/generic.c +715 -0
  19. data/third_party/boringssl/crypto/fipsmodule/bn/jacobi.c +146 -0
  20. data/third_party/boringssl/crypto/fipsmodule/bn/montgomery.c +430 -0
  21. data/third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c +207 -0
  22. data/third_party/boringssl/crypto/fipsmodule/bn/mul.c +869 -0
  23. data/third_party/boringssl/crypto/fipsmodule/bn/prime.c +894 -0
  24. data/third_party/boringssl/crypto/fipsmodule/bn/random.c +283 -0
  25. data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.c +254 -0
  26. data/third_party/boringssl/crypto/fipsmodule/bn/shift.c +307 -0
  27. data/third_party/boringssl/crypto/fipsmodule/bn/sqrt.c +502 -0
  28. data/third_party/boringssl/crypto/fipsmodule/cipher/aead.c +284 -0
  29. data/third_party/boringssl/crypto/fipsmodule/cipher/cipher.c +613 -0
  30. data/third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c +1437 -0
  31. data/third_party/boringssl/crypto/fipsmodule/cipher/e_des.c +233 -0
  32. data/third_party/boringssl/crypto/fipsmodule/des/des.c +785 -0
  33. data/third_party/boringssl/crypto/fipsmodule/digest/digest.c +256 -0
  34. data/third_party/boringssl/crypto/fipsmodule/digest/digests.c +280 -0
  35. data/third_party/boringssl/crypto/fipsmodule/ec/ec.c +842 -0
  36. data/third_party/boringssl/crypto/fipsmodule/ec/ec_key.c +517 -0
  37. data/third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c +304 -0
  38. data/third_party/boringssl/crypto/fipsmodule/ec/oct.c +404 -0
  39. data/third_party/boringssl/crypto/fipsmodule/ec/p224-64.c +1165 -0
  40. data/third_party/boringssl/crypto/fipsmodule/ec/p256-64.c +1708 -0
  41. data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c +561 -0
  42. data/third_party/boringssl/crypto/fipsmodule/ec/simple.c +1113 -0
  43. data/third_party/boringssl/crypto/fipsmodule/ec/util-64.c +109 -0
  44. data/third_party/boringssl/crypto/fipsmodule/ec/wnaf.c +456 -0
  45. data/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c +444 -0
  46. data/third_party/boringssl/crypto/fipsmodule/hmac/hmac.c +228 -0
  47. data/third_party/boringssl/crypto/fipsmodule/md4/md4.c +254 -0
  48. data/third_party/boringssl/crypto/fipsmodule/md5/md5.c +298 -0
  49. data/third_party/boringssl/crypto/fipsmodule/modes/cbc.c +212 -0
  50. data/third_party/boringssl/crypto/fipsmodule/modes/cfb.c +230 -0
  51. data/third_party/boringssl/crypto/fipsmodule/modes/ctr.c +219 -0
  52. data/third_party/boringssl/crypto/fipsmodule/modes/gcm.c +1074 -0
  53. data/third_party/boringssl/crypto/fipsmodule/modes/ofb.c +95 -0
  54. data/third_party/boringssl/crypto/fipsmodule/modes/polyval.c +91 -0
  55. data/third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg.c +200 -0
  56. data/third_party/boringssl/crypto/fipsmodule/rand/rand.c +358 -0
  57. data/third_party/boringssl/crypto/fipsmodule/rand/urandom.c +302 -0
  58. data/third_party/boringssl/crypto/fipsmodule/rsa/blinding.c +263 -0
  59. data/third_party/boringssl/crypto/fipsmodule/rsa/padding.c +692 -0
  60. data/third_party/boringssl/crypto/fipsmodule/rsa/rsa.c +855 -0
  61. data/third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c +1061 -0
  62. data/third_party/boringssl/crypto/fipsmodule/sha/sha1-altivec.c +361 -0
  63. data/third_party/boringssl/crypto/fipsmodule/sha/sha1.c +375 -0
  64. data/third_party/boringssl/crypto/fipsmodule/sha/sha256.c +337 -0
  65. data/third_party/boringssl/crypto/fipsmodule/sha/sha512.c +608 -0
  66. metadata +62 -2
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0.pre1
4
+ version: 1.10.0.pre2
5
5
  platform: ruby
6
6
  authors:
7
7
  - gRPC Authors
8
8
  autorequire:
9
9
  bindir: src/ruby/bin
10
10
  cert_chain: []
11
- date: 2018-02-23 00:00:00.000000000 Z
11
+ date: 2018-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -1000,22 +1000,82 @@ files:
1000
1000
  - third_party/boringssl/crypto/evp/scrypt.c
1001
1001
  - third_party/boringssl/crypto/evp/sign.c
1002
1002
  - third_party/boringssl/crypto/ex_data.c
1003
+ - third_party/boringssl/crypto/fipsmodule/aes/aes.c
1003
1004
  - third_party/boringssl/crypto/fipsmodule/aes/internal.h
1005
+ - third_party/boringssl/crypto/fipsmodule/aes/key_wrap.c
1006
+ - third_party/boringssl/crypto/fipsmodule/aes/mode_wrappers.c
1004
1007
  - third_party/boringssl/crypto/fipsmodule/bcm.c
1008
+ - third_party/boringssl/crypto/fipsmodule/bn/add.c
1009
+ - third_party/boringssl/crypto/fipsmodule/bn/asm/x86_64-gcc.c
1010
+ - third_party/boringssl/crypto/fipsmodule/bn/bn.c
1011
+ - third_party/boringssl/crypto/fipsmodule/bn/bytes.c
1012
+ - third_party/boringssl/crypto/fipsmodule/bn/cmp.c
1013
+ - third_party/boringssl/crypto/fipsmodule/bn/ctx.c
1014
+ - third_party/boringssl/crypto/fipsmodule/bn/div.c
1015
+ - third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c
1016
+ - third_party/boringssl/crypto/fipsmodule/bn/gcd.c
1017
+ - third_party/boringssl/crypto/fipsmodule/bn/generic.c
1005
1018
  - third_party/boringssl/crypto/fipsmodule/bn/internal.h
1019
+ - third_party/boringssl/crypto/fipsmodule/bn/jacobi.c
1020
+ - third_party/boringssl/crypto/fipsmodule/bn/montgomery.c
1021
+ - third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c
1022
+ - third_party/boringssl/crypto/fipsmodule/bn/mul.c
1023
+ - third_party/boringssl/crypto/fipsmodule/bn/prime.c
1024
+ - third_party/boringssl/crypto/fipsmodule/bn/random.c
1025
+ - third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.c
1006
1026
  - third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.h
1027
+ - third_party/boringssl/crypto/fipsmodule/bn/shift.c
1028
+ - third_party/boringssl/crypto/fipsmodule/bn/sqrt.c
1029
+ - third_party/boringssl/crypto/fipsmodule/cipher/aead.c
1030
+ - third_party/boringssl/crypto/fipsmodule/cipher/cipher.c
1031
+ - third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c
1032
+ - third_party/boringssl/crypto/fipsmodule/cipher/e_des.c
1007
1033
  - third_party/boringssl/crypto/fipsmodule/cipher/internal.h
1008
1034
  - third_party/boringssl/crypto/fipsmodule/delocate.h
1035
+ - third_party/boringssl/crypto/fipsmodule/des/des.c
1009
1036
  - third_party/boringssl/crypto/fipsmodule/des/internal.h
1037
+ - third_party/boringssl/crypto/fipsmodule/digest/digest.c
1038
+ - third_party/boringssl/crypto/fipsmodule/digest/digests.c
1010
1039
  - third_party/boringssl/crypto/fipsmodule/digest/internal.h
1011
1040
  - third_party/boringssl/crypto/fipsmodule/digest/md32_common.h
1041
+ - third_party/boringssl/crypto/fipsmodule/ec/ec.c
1042
+ - third_party/boringssl/crypto/fipsmodule/ec/ec_key.c
1043
+ - third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c
1012
1044
  - third_party/boringssl/crypto/fipsmodule/ec/internal.h
1045
+ - third_party/boringssl/crypto/fipsmodule/ec/oct.c
1046
+ - third_party/boringssl/crypto/fipsmodule/ec/p224-64.c
1047
+ - third_party/boringssl/crypto/fipsmodule/ec/p256-64.c
1013
1048
  - third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h
1049
+ - third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c
1014
1050
  - third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.h
1051
+ - third_party/boringssl/crypto/fipsmodule/ec/simple.c
1052
+ - third_party/boringssl/crypto/fipsmodule/ec/util-64.c
1053
+ - third_party/boringssl/crypto/fipsmodule/ec/wnaf.c
1054
+ - third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c
1055
+ - third_party/boringssl/crypto/fipsmodule/hmac/hmac.c
1015
1056
  - third_party/boringssl/crypto/fipsmodule/is_fips.c
1057
+ - third_party/boringssl/crypto/fipsmodule/md4/md4.c
1058
+ - third_party/boringssl/crypto/fipsmodule/md5/md5.c
1059
+ - third_party/boringssl/crypto/fipsmodule/modes/cbc.c
1060
+ - third_party/boringssl/crypto/fipsmodule/modes/cfb.c
1061
+ - third_party/boringssl/crypto/fipsmodule/modes/ctr.c
1062
+ - third_party/boringssl/crypto/fipsmodule/modes/gcm.c
1016
1063
  - third_party/boringssl/crypto/fipsmodule/modes/internal.h
1064
+ - third_party/boringssl/crypto/fipsmodule/modes/ofb.c
1065
+ - third_party/boringssl/crypto/fipsmodule/modes/polyval.c
1066
+ - third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg.c
1017
1067
  - third_party/boringssl/crypto/fipsmodule/rand/internal.h
1068
+ - third_party/boringssl/crypto/fipsmodule/rand/rand.c
1069
+ - third_party/boringssl/crypto/fipsmodule/rand/urandom.c
1070
+ - third_party/boringssl/crypto/fipsmodule/rsa/blinding.c
1018
1071
  - third_party/boringssl/crypto/fipsmodule/rsa/internal.h
1072
+ - third_party/boringssl/crypto/fipsmodule/rsa/padding.c
1073
+ - third_party/boringssl/crypto/fipsmodule/rsa/rsa.c
1074
+ - third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c
1075
+ - third_party/boringssl/crypto/fipsmodule/sha/sha1-altivec.c
1076
+ - third_party/boringssl/crypto/fipsmodule/sha/sha1.c
1077
+ - third_party/boringssl/crypto/fipsmodule/sha/sha256.c
1078
+ - third_party/boringssl/crypto/fipsmodule/sha/sha512.c
1019
1079
  - third_party/boringssl/crypto/hkdf/hkdf.c
1020
1080
  - third_party/boringssl/crypto/internal.h
1021
1081
  - third_party/boringssl/crypto/lhash/lhash.c