File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 19
19
- {os: ubuntu-latest, ruby: '3.1'}
20
20
- {os: ubuntu-20.04, ruby: '3.2'} # openssl 1.1.1
21
21
- {os: ubuntu-22.04, ruby: '3.2'} # openssl 3
22
+ - {os: ubuntu-22.04, ruby: '3.3'} # openssl 3 / latest Ruby
22
23
- {os: ubuntu-latest, ruby: 'jruby-9.4.3.0'}
23
24
- {os: windows-2019, ruby: '3.1'}
24
25
- {os: windows-2019, ruby: '3.2'} # openssl 3
26
+ - {os: windows-2019, ruby: '3.3'} # openssl 3 / latest Ruby
25
27
26
28
runs-on : ${{ matrix.cfg.os }}
27
29
env :
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ def expects_private_file(path)
280
280
# password is 74695716c8b6
281
281
expect {
282
282
provider . load_private_key ( 'encrypted-key' )
283
- } . to raise_error ( OpenSSL ::PKey ::PKeyError , /Could not parse PKey: (no start line|bad decrypt) / )
283
+ } . to raise_error ( OpenSSL ::PKey ::PKeyError , /Could not parse PKey/ )
284
284
end
285
285
286
286
it 'decrypts an RSA key previously saved using 3DES' do
@@ -315,7 +315,7 @@ def expects_private_file(path)
315
315
# password is 74695716c8b6
316
316
expect {
317
317
provider . load_private_key ( 'encrypted-ec-key' )
318
- } . to raise_error ( OpenSSL ::PKey ::PKeyError , /(unknown|invalid) curve name|Could not parse PKey: (no start line|bad decrypt) / )
318
+ } . to raise_error ( OpenSSL ::PKey ::PKeyError , /(unknown|invalid) curve name|Could not parse PKey/ )
319
319
end
320
320
end
321
321
end
You can’t perform that action at this time.
0 commit comments