fluent-plugin-jwt-filter 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ccd4c3361ee9057943cb13416f9b1b49c6352459
4
- data.tar.gz: a4f2c7e65261445e954bccd246085967046e34e3
3
+ metadata.gz: 35ca92587b5a5df39f60e20e78a3f129f47f9ea9
4
+ data.tar.gz: 5ac5a446a062a7f86ea484931401430f66965d3c
5
5
  SHA512:
6
- metadata.gz: 29713f247c1d5466a98ffb45b0618aaa688d5573e499d11741dd2a2b07ecb033f9118fe691d0d88ff847ab0c53bc86a6f78700b8a79462bc304697a187069291
7
- data.tar.gz: 922799b2b98ca4fd3680369160d1d3977cb56d40b365e17ca60cc673f7fd28413207ba4b0e30798e8ec17511b492082c481a0146bde71815dd391df63f1fe558
6
+ metadata.gz: 607e9a9bffb0992e5b619a6721a2eada310bc9b876a09db7d05d88305293d7d21312c34c089e5c43567e1f9afa5cb0720afd58c46818dd2e962f311a48810246
7
+ data.tar.gz: b7046587cf304be9077a378cb0d4b9a40f1dbe6b5c52ea58d38ce8a529154a626a4cc2b8ce639fe0609a64a185ab6cefcecf4f43635466a2d00830d0a83a00d9
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Fluent Filter plugin for encrypting and decrypting messages using JSON Web Token technology (JSON Web Encryption, JSON Web Signature and JSON Web Key). This plugin uses [json-jwt](https://github.com/nov/json-jwt) to encrypt/decrypt messages.
4
4
 
5
+ in_secure_forward and out_secure_forward can support encryption and authentication between fluentd instances. However, if a user intends to share their data via third party data broker like [EverySense](http://every-sense.com/en/), they may wants to encrypt their data end-to-end fashion. fluent-plugin-jwt-filter can support end-to-end (from fluentd to fluentd) encryption.
6
+
5
7
  ## Installation
6
8
 
7
9
  Add this line to your application's Gemfile:
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "fluent-plugin-jwt-filter"
7
- spec.version = "0.0.3"
7
+ spec.version = "0.0.4"
8
8
  spec.authors = ["Toyokazu Akiyama"]
9
9
  spec.email = ["toyokazu@gmail.com"]
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-jwt-filter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toyokazu Akiyama