fluent-plugin-secure-forward 0.4.3 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9601f59a121cd93cafea5680070f5576063161ef
4
- data.tar.gz: 46d5cdff55de400c05415994a12b653439ecbfd1
3
+ metadata.gz: 19aa9e27d25f16c44cf1444df1ec340ac9f41876
4
+ data.tar.gz: cc9f257915c3924854e837ea1018f1e4912baa2f
5
5
  SHA512:
6
- metadata.gz: e6d160a617827e2ce82a57e85ae751325ba7ba71e7ade2c9b6ff7a4939e83deddd851b9fe6cb5cb7633831f8b2dc934de54734928cc59568b53ac0c043c1c72d
7
- data.tar.gz: 93ba1ea3da142b50d972a891b02fd22a8575f91b6bfb9464bf6c6d7c2e164293b225a8fac95bdd5f7539797d6b4cad1636d748eb95bc4ae70f6caf7bd57eaa8b
6
+ metadata.gz: fd4d91d7071e7eb844de7684626f83906aa6c3916789cc7c751a5e09b339213bbbaaa95644a100e6855c82ec32f858e88a76b6d19c1ee60da6b48a5bcad1eac9
7
+ data.tar.gz: f8e49d69b7cb5aa601ae82da7443362ad3c1db0784b0a2191c4a7d3b9ea4fd83bc55716b3e9deef24451a815e6578eb01d4e1c7c9d24597172f12a80b0b9e512
data/README.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  [Fluentd](http://fluentd.org) input/output plugin to forward fluentd messages over SSL with authentication.
4
4
 
5
+ ## Plugin status
6
+
7
+ **NOTE: This plugin will not be updated anymore.**
8
+
9
+ [Fluentd v0.14.12](http://www.fluentd.org/blog/fluentd-v0.14.12-has-been-released) supports event forwarding via encrypted network communication. Use that feature instead of using this plugin.
10
+
11
+ ## Overview
12
+
5
13
  This plugin makes you to be able to:
6
14
 
7
15
  * protect your data from others in transferring with SSL
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  Gem::Specification.new do |gem|
3
3
  gem.name = "fluent-plugin-secure-forward"
4
- gem.version = "0.4.3"
4
+ gem.version = "0.4.4"
5
5
  gem.authors = ["TAGOMORI Satoshi"]
6
6
  gem.email = ["tagomoris@gmail.com"]
7
7
  gem.summary = %q{Fluentd input/output plugin to forward over SSL with authentications}
@@ -20,7 +20,7 @@ module Fluent
20
20
  subject.add_entry('L', opts[:cert_locality])
21
21
  subject.add_entry('CN', opts[:cert_common_name])
22
22
 
23
- digest = OpenSSL::Digest::SHA1.new
23
+ digest = OpenSSL::Digest::SHA256.new
24
24
 
25
25
  cert = OpenSSL::X509::Certificate.new
26
26
  cert.not_before = Time.at(0)
@@ -48,7 +48,7 @@ module Fluent
48
48
  subject.add_entry('L', opts[:locality])
49
49
  subject.add_entry('CN', opts[:common_name])
50
50
 
51
- digest = OpenSSL::Digest::SHA1.new
51
+ digest = OpenSSL::Digest::SHA256.new
52
52
 
53
53
  cert = OpenSSL::X509::Certificate.new
54
54
  cert.not_before = Time.at(0)
@@ -75,7 +75,7 @@ module Fluent
75
75
  subject.add_entry('L', opts[:locality])
76
76
  subject.add_entry('CN', opts[:common_name])
77
77
 
78
- digest = OpenSSL::Digest::SHA1.new
78
+ digest = OpenSSL::Digest::SHA256.new
79
79
 
80
80
  cert = OpenSSL::X509::Certificate.new
81
81
  cert.not_before = Time.at(0)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-secure-forward
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - TAGOMORI Satoshi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-10 00:00:00.000000000 Z
11
+ date: 2017-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd
@@ -151,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
151
  version: '0'
152
152
  requirements: []
153
153
  rubyforge_project:
154
- rubygems_version: 2.5.1
154
+ rubygems_version: 2.6.11
155
155
  signing_key:
156
156
  specification_version: 4
157
157
  summary: Fluentd input/output plugin to forward over SSL with authentications
@@ -160,4 +160,3 @@ test_files:
160
160
  - test/plugin/test_in_secure_forward.rb
161
161
  - test/plugin/test_input_session.rb
162
162
  - test/plugin/test_out_secure_forward.rb
163
- has_rdoc: