json-jwt 1.10.0 → 1.10.1

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

Potentially problematic release.


This version of json-jwt might be problematic. Click here for more details.

@@ -1,28 +0,0 @@
1
- require 'simplecov'
2
-
3
- SimpleCov.start do
4
- add_filter 'spec'
5
- end
6
-
7
- require 'rspec'
8
- require 'rspec/its'
9
- require 'json/jwt'
10
-
11
- RSpec.configure do |config|
12
- config.expect_with :rspec do |c|
13
- c.syntax = [:should, :expect]
14
- end
15
- end
16
-
17
- def gcm_supported?
18
- ['aes-128-gcm', 'aes-128-gcm'].all? do |alg|
19
- OpenSSL::Cipher.ciphers.include? alg
20
- end
21
- end
22
-
23
- def pss_supported?
24
- OpenSSL::VERSION >= '2.1.0'
25
- end
26
-
27
- require 'helpers/sign_key_fixture_helper'
28
- require 'helpers/nimbus_spec_helper'