logstash-integration-snmp 4.1.0-java → 4.2.0-java

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
  SHA256:
3
- metadata.gz: ceae98771c874e51d755ba48a73edb8322ed4fcc291693b912e1c14be6e8b76b
4
- data.tar.gz: f58d275ed475825c8c71aed346a75e236cc237089e91a411cbb2dcb74d32733c
3
+ metadata.gz: 9404914e9f202ca362b1f6140863d09f32c7fe7d5610090110f138f0c3990564
4
+ data.tar.gz: a84251a36bd3e4e6025845bed06c4e25756f55f29aadb394d3c049384bd676f3
5
5
  SHA512:
6
- metadata.gz: 55999a85c693fc954303318f2ece9f0e695950c3b4b355689b1cc8ae40ef48dc032d2fc33bbd30087f3786c59490462497085017c166c1fe0ad7bfa36d5a4cc0
7
- data.tar.gz: 3fb4d9a34127b33b240cb5e2f31cb75c8aae6d54c5fadf4a12bae22b093282679572e51856e2ff4521911e6ad15aa4f54014dcbeba0773ef99dc897f55aef4aa
6
+ metadata.gz: 635a81a3a042e0e37f5a612754ca99ca7a84377b9deb74de4a30d6adc04cd2337d0985c140c5bafdc3a19d8ed952c4ee0808f0e097bb1e4f098a667182facca7
7
+ data.tar.gz: b2b4f78a02c0c50eac98ee7c6ff8fe5a64227033a586c440353bd4e7092c48e70992a4c3813e52d59f6d110b67ee7b59e7fbf0752f89c72dd9862036e1da95bb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 4.2.0
2
+ - Add AES256 with 3DES extension support for `priv_protocol` [#78](https://github.com/logstash-plugins/logstash-integration-snmp/pull/78)
3
+
1
4
  ## 4.1.0
2
5
  - Add support for SNMPv3 `context engine ID` and `context name` to the `snmptrap` input [#76](https://github.com/logstash-plugins/logstash-integration-snmp/pull/76)
3
6
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.1.0
1
+ 4.2.0
@@ -100,7 +100,7 @@ This plugin supports the following SNMPv3 authentication options.
100
100
  | <<plugins-{type}s-{plugin}-auth_pass>> |<<password,password>>|No
101
101
  | <<plugins-{type}s-{plugin}-auth_protocol>> |<<string,string>>, one of `["md5", "sha", "sha2", "hmac128sha224", "hmac192sha256", "hmac256sha384", "hmac384sha512"]`|No
102
102
  | <<plugins-{type}s-{plugin}-priv_pass>> |<<password,password>>|No
103
- | <<plugins-{type}s-{plugin}-priv_protocol>> |<<string,string>>, one of `["des", "3des", "aes", "aes128", "aes192", "aes256"]`|No
103
+ | <<plugins-{type}s-{plugin}-priv_protocol>> |<<string,string>>, one of `["des", "3des", "aes", "aes128", "aes192", "aes256", "aes256with3desKey"]`|No
104
104
  | <<plugins-{type}s-{plugin}-security_level>> |<<string,string>>, one of `["noAuthNoPriv", "authNoPriv", "authPriv"]`|No
105
105
  | <<plugins-{type}s-{plugin}-security_name>> |<<string,string>>|No
106
106
  |=======================================================================
@@ -412,12 +412,18 @@ The `priv_pass` option specifies the SNMPv3 encryption password.
412
412
  [id="plugins-{type}s-{plugin}-priv_protocol"]
413
413
  ===== `priv_protocol`
414
414
 
415
- * Value can be any of: `des`, `3des`, `aes`, `aes128`, `aes192`, `aes256`
415
+ * Value can be any of: `des`, `3des`, `aes`, `aes128`, `aes192`, `aes256`, `aes256with3desKey`
416
416
  * Note that `aes` and `aes128` are equivalent
417
417
  * There is no default value for this setting
418
418
 
419
419
  The `priv_protocol` option specifies the SNMPv3 privacy/encryption protocol.
420
420
 
421
+ .Technical Preview
422
+ ****
423
+ The `aes256with3desKey` feature that allows using AES256 with 3DES key extension for `priv_protocol` is in Technical Preview.
424
+ Configuration option and implementation details are subject to change in minor releases without being preceded by deprecation warnings.
425
+ ****
426
+
421
427
  [id="plugins-{type}s-{plugin}-security_level"]
422
428
  ===== `security_level`
423
429
 
@@ -118,7 +118,7 @@ This plugin supports the following SNMPv3 authentication options.
118
118
  | <<plugins-{type}s-{plugin}-auth_pass>> |<<password,password>>|No
119
119
  | <<plugins-{type}s-{plugin}-auth_protocol>> |<<string,string>>, one of `["md5", "sha", "sha2", "hmac128sha224", "hmac192sha256", "hmac256sha384", "hmac384sha512"]`|No
120
120
  | <<plugins-{type}s-{plugin}-priv_pass>> |<<password,password>>|No
121
- | <<plugins-{type}s-{plugin}-priv_protocol>> |<<string,string>>, one of `["des", "3des", "aes", "aes128", "aes192", "aes256"]`|No
121
+ | <<plugins-{type}s-{plugin}-priv_protocol>> |<<string,string>>, one of `["des", "3des", "aes", "aes128", "aes192", "aes256", "aes256with3desKey"]`|No
122
122
  | <<plugins-{type}s-{plugin}-security_level>> |<<string,string>>, one of `["noAuthNoPriv", "authNoPriv", "authPriv"]`|No
123
123
  | <<plugins-{type}s-{plugin}-security_name>> |<<string,string>>|No
124
124
  |=======================================================================
@@ -343,7 +343,7 @@ The `priv_pass` option specifies the SNMPv3 encryption password.
343
343
  [id="plugins-{type}s-{plugin}-priv_protocol"]
344
344
  ===== `priv_protocol`
345
345
 
346
- * Value can be any of: `des`, `3des`, `aes`, `aes128`, `aes192`, `aes256`
346
+ * Value can be any of: `des`, `3des`, `aes`, `aes128`, `aes192`, `aes256`, `aes256with3desKey`
347
347
  * Note that `aes` and `aes128` are equivalent
348
348
  * There is no default value for this setting
349
349
 
@@ -85,7 +85,7 @@ module LogStash
85
85
  base.config :auth_pass, :validate => :password
86
86
 
87
87
  # The SNMPv3 privacy/encryption protocol
88
- base.config :priv_protocol, :validate => %w[des 3des aes aes128 aes192 aes256]
88
+ base.config :priv_protocol, :validate => %w[des 3des aes aes128 aes192 aes256 aes256with3desKey]
89
89
 
90
90
  # The SNMPv3 encryption password
91
91
  base.config :priv_pass, :validate => :password
@@ -4,4 +4,4 @@ require 'jar_dependencies'
4
4
  require_jar('org.snmp4j', 'snmp4j', '3.8.0')
5
5
  require_jar('org.snmp4j', 'snmp4j-log4j', '2.8.11')
6
6
  require_jar('org.snakeyaml', 'snakeyaml-engine', '2.7')
7
- require_jar('org.logstash.integrations', 'plugin', '4.1.0')
7
+ require_jar('org.logstash.integrations', 'plugin', '4.2.0')
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-integration-snmp
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.2.0
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-08-18 00:00:00.000000000 Z
10
+ date: 2025-10-07 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: logstash-core-plugin-api
@@ -468,7 +468,7 @@ files:
468
468
  - spec/unit/inputs/common_spec.rb
469
469
  - spec/unit/inputs/snmp_spec.rb
470
470
  - spec/unit/inputs/snmptrap_spec.rb
471
- - vendor/jar-dependencies/org/logstash/integrations/plugin/4.1.0/plugin-4.1.0.jar
471
+ - vendor/jar-dependencies/org/logstash/integrations/plugin/4.2.0/plugin-4.2.0.jar
472
472
  - vendor/jar-dependencies/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar
473
473
  - vendor/jar-dependencies/org/snmp4j/snmp4j-log4j/2.8.11/snmp4j-log4j-2.8.11.jar
474
474
  - vendor/jar-dependencies/org/snmp4j/snmp4j/3.8.0/snmp4j-3.8.0.jar