pkcs11 0.3.1 → 0.3.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.appveyor.yml +15 -11
- data/.gitignore +12 -4
- data/.travis.yml +1 -1
- data/Gemfile +2 -2
- data/History.txt +15 -0
- data/README.rdoc +3 -3
- data/Rakefile +7 -1
- data/ext/generate_constants.rb +2 -2
- data/ext/generate_structs.rb +2 -2
- data/ext/pk11.c +3 -3
- data/ext/pk11_const.c +9 -8
- data/ext/pk11_const_macros.h +2 -1
- data/ext/pk11_struct_macros.h +2 -1
- data/ext/pk11_version.h +1 -1
- data/pkcs11_luna/Manifest.txt +11 -11
- data/pkcs11_protect_server/Manifest.txt +2 -2
- data.tar.gz.sig +0 -0
- metadata +25 -25
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc4ee509784e2ea587d9e33242c9322d66b87448d69c188e278571695e878206
|
|
4
|
+
data.tar.gz: 4f36de60d2d734fc686a195edccaa08a7f89456e3cefacc7d2b90cbf1e8271da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51cf700dae9e033ea20741905c38609741b99bfb106515b58aa4e1d2bf6e4678a7e88691689bb7aaf87c4e48a2d34c450a9148bef11ead1c747f1188e76ec41a
|
|
7
|
+
data.tar.gz: 9373aa9ddfec25d955379495b13d1cf2f5b2aa0732f4eaa9f06d62cf815fddc482749d11d4e389074a378e1c849b6bb3bda202f331141d0b2dce43a3dd1adeb0
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/.appveyor.yml
CHANGED
|
@@ -1,27 +1,33 @@
|
|
|
1
|
+
image: Visual Studio 2019
|
|
2
|
+
|
|
1
3
|
install:
|
|
2
|
-
-
|
|
3
|
-
-
|
|
4
|
+
- set PATH=C:/Ruby%ruby_version%/bin;c:/Program Files/Git/cmd;c:/Windows/system32;C:/Windows/System32/WindowsPowerShell/v1.0;C:/Program Files/Mercurial
|
|
5
|
+
- set RAKEOPT=-rdevkit
|
|
6
|
+
- set RUBYOPT=--verbose
|
|
4
7
|
- ps: |
|
|
5
8
|
if ($env:ruby_version -like "*head*") {
|
|
6
9
|
$(new-object net.webclient).DownloadFile("https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-head/rubyinstaller-$env:ruby_version.exe", "$pwd/ruby-setup.exe")
|
|
7
10
|
cmd /c ruby-setup.exe /verysilent /dir=C:/Ruby$env:ruby_version
|
|
8
11
|
}
|
|
9
|
-
-
|
|
12
|
+
- ridk version
|
|
13
|
+
- ridk exec sh -c "pacman -S --noconfirm --needed ${MINGW_PACKAGE_PREFIX}-gcc"
|
|
10
14
|
- gem --version
|
|
11
15
|
- bundle install
|
|
12
16
|
|
|
13
|
-
#
|
|
14
|
-
# pre-installed firefox. The test helper will find it automatically.
|
|
15
|
-
# When running ruby-x64, we equally need a 64 bit softokn3.dll to test against.
|
|
17
|
+
# We need a 32 or 64 bit softokn3.dll to test against.
|
|
16
18
|
# However it is not part of any installed software on Appveyor,
|
|
17
|
-
# so we download and install a 64 bit firefox version and use it's softokn3.dll.
|
|
19
|
+
# so we download and install a 32 or 64 bit firefox version and use it's softokn3.dll.
|
|
18
20
|
- ps: |
|
|
19
21
|
if ($env:ruby_version -like "*x64*") {
|
|
20
22
|
$(new-object net.webclient).DownloadFile('http://ftp.mozilla.org/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe', 'C:/firefox-setup.exe')
|
|
21
|
-
cmd /c "C:/firefox-setup.exe" -ms
|
|
22
23
|
$env:SOFTOKN_PATH = 'C:/Program Files/Mozilla Firefox/softokn3.dll'
|
|
23
24
|
$env:PATH = 'C:/Program Files/Mozilla Firefox;' + $env:PATH
|
|
25
|
+
} else {
|
|
26
|
+
$(new-object net.webclient).DownloadFile('http://ftp.mozilla.org/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe', 'C:/firefox-setup.exe')
|
|
27
|
+
$env:SOFTOKN_PATH = 'C:/Program Files (x86)/Mozilla Firefox/softokn3.dll'
|
|
28
|
+
$env:PATH = 'C:/Program Files (x86)/Mozilla Firefox;' + $env:PATH
|
|
24
29
|
}
|
|
30
|
+
cmd /c "C:/firefox-setup.exe" -ms
|
|
25
31
|
|
|
26
32
|
build: off
|
|
27
33
|
|
|
@@ -34,7 +40,5 @@ environment:
|
|
|
34
40
|
RUBY_DLL_PATH: "C:/Program Files/Mozilla Firefox"
|
|
35
41
|
- ruby_version: "25"
|
|
36
42
|
RUBY_DLL_PATH: "C:/Program Files (x86)/Mozilla Firefox"
|
|
37
|
-
- ruby_version: "
|
|
43
|
+
- ruby_version: "31-x64"
|
|
38
44
|
RUBY_DLL_PATH: "C:/Program Files/Mozilla Firefox"
|
|
39
|
-
- ruby_version: "22"
|
|
40
|
-
- ruby_version: "23-x64"
|
data/.gitignore
CHANGED
|
@@ -4,14 +4,22 @@ ext/pk11_struct_def.inc
|
|
|
4
4
|
ext/pk11_struct_impl.inc
|
|
5
5
|
ext/pk11_thread_funcs.c
|
|
6
6
|
ext/pk11_thread_funcs.h
|
|
7
|
+
pkcs11_luna/ext/generate_constants.rb
|
|
8
|
+
pkcs11_luna/ext/generate_structs.rb
|
|
9
|
+
pkcs11_luna/ext/pk11_const_macros.h
|
|
10
|
+
pkcs11_luna/ext/pk11_struct_macros.h
|
|
11
|
+
pkcs11_luna/ext/pk11_version.h
|
|
12
|
+
pkcs11_luna/ext/std_structs.rb
|
|
13
|
+
pkcs11_luna/pkg/
|
|
14
|
+
pkcs11_protect_server/ext/generate_constants.rb
|
|
15
|
+
pkcs11_protect_server/ext/generate_structs.rb
|
|
7
16
|
pkcs11_protect_server/ext/pk11_const_macros.h
|
|
8
17
|
pkcs11_protect_server/ext/pk11_struct_macros.h
|
|
9
18
|
pkcs11_protect_server/ext/pk11_version.h
|
|
10
|
-
pkcs11_protect_server/ext/
|
|
11
|
-
pkcs11_protect_server/
|
|
12
|
-
pkcs11_protect_server/ext/pk11s_struct_def.inc
|
|
13
|
-
pkcs11_protect_server/ext/pk11s_struct_impl.inc
|
|
19
|
+
pkcs11_protect_server/ext/std_structs.rb
|
|
20
|
+
pkcs11_protect_server/pkg/
|
|
14
21
|
*.so
|
|
15
22
|
Gemfile.lock
|
|
16
23
|
tmp
|
|
17
24
|
Manifest.txt
|
|
25
|
+
pkg/
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
|
@@ -7,10 +7,10 @@ source "https://rubygems.org/"
|
|
|
7
7
|
|
|
8
8
|
gem "yard", "~>0.6", :group => [:development, :test]
|
|
9
9
|
gem "rake-compiler", "~>1.0", :group => [:development, :test]
|
|
10
|
-
gem "rake-compiler-dock", "~>
|
|
10
|
+
gem "rake-compiler-dock", "~>1.2", :group => [:development, :test]
|
|
11
11
|
gem "minitest", "~>5.7", :group => [:development, :test]
|
|
12
12
|
gem "hoe-bundler", "~>1.0", :group => [:development, :test]
|
|
13
13
|
gem "rdoc", ">=4.0", "<7", :group => [:development, :test]
|
|
14
|
-
gem "hoe", "~>3.
|
|
14
|
+
gem "hoe", "~>3.23", :group => [:development, :test]
|
|
15
15
|
|
|
16
16
|
# vim: syntax=ruby
|
data/History.txt
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
=== 0.3.4 / 2022-04-20
|
|
2
|
+
|
|
3
|
+
* Fix compatibility with ruby-3.2
|
|
4
|
+
|
|
5
|
+
=== 0.3.3 / 2020-11-07
|
|
6
|
+
|
|
7
|
+
* Fix possible segfault on GC pressure at startup
|
|
8
|
+
* Move CI from http://travis-ci.org to https://travis-ci.com
|
|
9
|
+
|
|
10
|
+
=== 0.3.2 / 2020-01-12
|
|
11
|
+
|
|
12
|
+
* pkcs11_protect_server, pkcs11_luna: Move parsing of vendor header files to gem installation.
|
|
13
|
+
This fixes possible compile errors, if the version of vendor header files differ between gem build and gem install.
|
|
14
|
+
* pkcs11_luna: Workaround invalid UTF-8 encoding in cryptoki_v2.h of some Luna Client versions.
|
|
15
|
+
|
|
1
16
|
=== 0.3.1 / 2020-01-07
|
|
2
17
|
|
|
3
18
|
* Fix compilation issue with newer Luna client library. #11
|
data/README.rdoc
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
{<img src="https://travis-ci.org/larskanis/pkcs11.svg?branch=master" alt="Build Status" />}[https://travis-ci.org/larskanis/pkcs11]
|
|
2
|
-
{<img src="https://ci.appveyor.com/api/projects/status/8m7ugl1ogijw1c8c?svg=true" alt="Build Status" />}[https://ci.appveyor.com/project/larskanis/pkcs11]
|
|
3
|
-
|
|
4
1
|
= PKCS #11/Ruby Interface
|
|
5
2
|
|
|
6
3
|
home :: http://github.com/larskanis/pkcs11
|
|
7
4
|
API documentation :: http://rubydoc.info/gems/pkcs11/frames
|
|
8
5
|
|
|
6
|
+
{<img src="https://travis-ci.com/larskanis/pkcs11.svg?branch=master" alt="Build Status" />}[https://travis-ci.com/larskanis/pkcs11]
|
|
7
|
+
{<img src="https://ci.appveyor.com/api/projects/status/8m7ugl1ogijw1c8c?svg=true" alt="Build Status" />}[https://ci.appveyor.com/project/larskanis/pkcs11]
|
|
8
|
+
|
|
9
9
|
This module allows Ruby programs to interface with "RSA Security Inc.
|
|
10
10
|
PKCS #11 Cryptographic Token Interface (Cryptoki)".
|
|
11
11
|
PKCS #11 is the de-facto standard to access cryptographic devices.
|
data/Rakefile
CHANGED
|
@@ -24,13 +24,19 @@ Hoe.plugin :bundler
|
|
|
24
24
|
# Build a Manifest file to satisfy hoe.
|
|
25
25
|
IO.write("Manifest.txt", `git ls-files`)
|
|
26
26
|
|
|
27
|
+
# Ensure pkg is rebuilt
|
|
28
|
+
task :remove_pkg do
|
|
29
|
+
rm_rf 'pkg'
|
|
30
|
+
end
|
|
31
|
+
task :gem => [:remove_pkg]
|
|
32
|
+
|
|
27
33
|
hoe = Hoe.spec 'pkcs11' do
|
|
28
34
|
developer('Ryosuke Kutsuna', 'ryosuke@deer-n-horse.jp')
|
|
29
35
|
developer('GOTOU Yuuzou', 'gotoyuzo@notwork.org')
|
|
30
36
|
developer('Lars Kanis', 'kanis@comcard.de')
|
|
31
37
|
extra_dev_deps << ['yard', '~> 0.6']
|
|
32
38
|
extra_dev_deps << ['rake-compiler', '~> 1.0']
|
|
33
|
-
extra_dev_deps << ['rake-compiler-dock', '~>
|
|
39
|
+
extra_dev_deps << ['rake-compiler-dock', '~> 1.2']
|
|
34
40
|
extra_dev_deps << ['minitest', '~> 5.7']
|
|
35
41
|
extra_dev_deps << ['hoe-bundler', '~> 1.0']
|
|
36
42
|
|
data/ext/generate_constants.rb
CHANGED
|
@@ -12,7 +12,7 @@ class ConstantParser
|
|
|
12
12
|
def self.run(argv)
|
|
13
13
|
s = self.new
|
|
14
14
|
options = Struct.new(:verbose, :const, :files).new
|
|
15
|
-
OptionParser.new
|
|
15
|
+
OptionParser.new do |opts|
|
|
16
16
|
opts.banner = "Usage: #{$0} [options] <header-file.h>*"
|
|
17
17
|
|
|
18
18
|
opts.on("-v", "--[no-]verbose", "Run verbosely", &options.method(:verbose=))
|
|
@@ -21,7 +21,7 @@ class ConstantParser
|
|
|
21
21
|
puts opts
|
|
22
22
|
exit
|
|
23
23
|
end
|
|
24
|
-
end.parse!
|
|
24
|
+
end.parse!(argv)
|
|
25
25
|
options.files = argv
|
|
26
26
|
s.options = options
|
|
27
27
|
s.start!
|
data/ext/generate_structs.rb
CHANGED
|
@@ -15,7 +15,7 @@ class StructParser
|
|
|
15
15
|
def self.run(argv)
|
|
16
16
|
s = self.new
|
|
17
17
|
options = Struct.new(:verbose, :def, :impl, :doc, :files).new
|
|
18
|
-
OptionParser.new
|
|
18
|
+
OptionParser.new do |opts|
|
|
19
19
|
opts.banner = "Usage: #{$0} [options] <header-file.h>*"
|
|
20
20
|
|
|
21
21
|
opts.on("-v", "--[no-]verbose", "Run verbosely", &options.method(:verbose=))
|
|
@@ -26,7 +26,7 @@ class StructParser
|
|
|
26
26
|
puts opts
|
|
27
27
|
exit
|
|
28
28
|
end
|
|
29
|
-
end.parse!
|
|
29
|
+
end.parse!(argv)
|
|
30
30
|
options.files = argv
|
|
31
31
|
s.options = options
|
|
32
32
|
s.start!
|
data/ext/pk11.c
CHANGED
|
@@ -1501,11 +1501,11 @@ cCK_MECHANISM_initialize(int argc, VALUE *argv, VALUE self)
|
|
|
1501
1501
|
}
|
|
1502
1502
|
|
|
1503
1503
|
/* rb_define_method(cCK_MECHANISM, "mechanism", cCK_MECHANISM_get_mechanism, 0); */
|
|
1504
|
-
/* rb_define_method(cCK_MECHANISM, "mechanism=", cCK_MECHANISM_set_mechanism,
|
|
1504
|
+
/* rb_define_method(cCK_MECHANISM, "mechanism=", cCK_MECHANISM_set_mechanism, 1); */
|
|
1505
1505
|
PKCS11_IMPLEMENT_ULONG_ACCESSOR(CK_MECHANISM, mechanism);
|
|
1506
1506
|
|
|
1507
1507
|
/* rb_define_method(cCK_MECHANISM, "pParameter", cCK_MECHANISM_get_pParameter, 0); */
|
|
1508
|
-
/* rb_define_method(cCK_MECHANISM, "pParameter=", cCK_MECHANISM_set_pParameter,
|
|
1508
|
+
/* rb_define_method(cCK_MECHANISM, "pParameter=", cCK_MECHANISM_set_pParameter, 1); */
|
|
1509
1509
|
/* @see PKCS11::CK_MECHANISM#initialize */
|
|
1510
1510
|
static VALUE
|
|
1511
1511
|
cCK_MECHANISM_get_pParameter(VALUE self)
|
|
@@ -1553,7 +1553,7 @@ cCK_MECHANISM_set_pParameter(VALUE self, VALUE value)
|
|
|
1553
1553
|
|
|
1554
1554
|
|
|
1555
1555
|
void
|
|
1556
|
-
Init_pkcs11_ext()
|
|
1556
|
+
Init_pkcs11_ext(void)
|
|
1557
1557
|
{
|
|
1558
1558
|
mPKCS11 = rb_define_module("PKCS11");
|
|
1559
1559
|
sNEW = rb_intern("new");
|
data/ext/pk11_const.c
CHANGED
|
@@ -170,14 +170,15 @@ Init_pkcs11_const(VALUE cPKCS11, VALUE ePKCS11Error)
|
|
|
170
170
|
PKCS11_DEFINE_CONST(CKZ_DATA_SPECIFIED);
|
|
171
171
|
PKCS11_DEFINE_CONST(CKZ_SALT_SPECIFIED);
|
|
172
172
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
173
|
+
#define DEFINE_GLOBAL_HASH(h) \
|
|
174
|
+
rb_global_variable(&v##h); \
|
|
175
|
+
v##h = rb_hash_new(); \
|
|
176
|
+
rb_define_const(cPKCS11, #h, v##h);
|
|
177
|
+
|
|
178
|
+
DEFINE_GLOBAL_HASH(OBJECT_CLASSES)
|
|
179
|
+
DEFINE_GLOBAL_HASH(ATTRIBUTES)
|
|
180
|
+
DEFINE_GLOBAL_HASH(MECHANISMS)
|
|
181
|
+
DEFINE_GLOBAL_HASH(RETURN_VALUES)
|
|
181
182
|
|
|
182
183
|
#include "pk11_const_def.inc"
|
|
183
184
|
|
data/ext/pk11_const_macros.h
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
/**************************************************/
|
|
7
7
|
|
|
8
8
|
#define PKCS11_DEFINE_CONST(constant) \
|
|
9
|
-
rb_define_const(MODULE_FOR_CONSTS, #constant,
|
|
9
|
+
rb_define_const(MODULE_FOR_CONSTS, #constant, LONG2NUM(constant))
|
|
10
10
|
|
|
11
11
|
#define PKCS11_DEFINE_CONST_GROUP(group, name, value) \
|
|
12
12
|
do { \
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
old = rb_hash_aref(group, rvalue); \
|
|
18
18
|
if (!NIL_P(old)) rb_warning("%s is equal to %s", RSTRING_PTR(old), name); \
|
|
19
19
|
rb_hash_aset(group, rvalue, str); \
|
|
20
|
+
RB_GC_GUARD(str); \
|
|
20
21
|
} while(0)
|
|
21
22
|
|
|
22
23
|
#define PKCS11_DEFINE_OBJECT_CLASS(constant) \
|
data/ext/pk11_struct_macros.h
CHANGED
|
@@ -86,7 +86,7 @@ set_ulong_ptr(VALUE obj, VALUE value, const char *name, off_t offset)
|
|
|
86
86
|
*ptr = NULL_PTR;
|
|
87
87
|
return value;
|
|
88
88
|
}
|
|
89
|
-
new_obj = Data_Make_Struct(
|
|
89
|
+
new_obj = Data_Make_Struct(rb_cObject, CK_ULONG, 0, -1, *ptr);
|
|
90
90
|
rb_iv_set(obj, name, new_obj);
|
|
91
91
|
**ptr = NUM2ULONG(value);
|
|
92
92
|
return value;
|
|
@@ -416,6 +416,7 @@ static VALUE c##s##_set_##f(VALUE o, VALUE v){ \
|
|
|
416
416
|
#define PKCS11_DEFINE_STRUCT(s) \
|
|
417
417
|
do { \
|
|
418
418
|
c##s = rb_define_class_under(MODULE_FOR_STRUCTS, #s, BASECLASS_FOR_STRUCTS); \
|
|
419
|
+
rb_global_variable(&a##s##_members); \
|
|
419
420
|
a##s##_members = rb_ary_new(); \
|
|
420
421
|
rb_define_alloc_func(c##s, s##_s_alloc); \
|
|
421
422
|
rb_define_const(c##s, "SIZEOF_STRUCT", ULONG2NUM(sizeof(s))); \
|
data/ext/pk11_version.h
CHANGED
data/pkcs11_luna/Manifest.txt
CHANGED
|
@@ -3,22 +3,22 @@
|
|
|
3
3
|
Manifest.txt
|
|
4
4
|
README_LUNA.rdoc
|
|
5
5
|
Rakefile
|
|
6
|
-
ext/extconf.rb
|
|
7
|
-
ext/generate_constants.rb
|
|
8
|
-
ext/generate_structs.rb
|
|
9
|
-
ext/pk11l.c
|
|
10
|
-
lib/pkcs11_luna.rb
|
|
11
|
-
lib/pkcs11_luna/extensions.rb
|
|
12
|
-
test/luna_helper.rb
|
|
13
|
-
test/app_id_helper.rb
|
|
14
|
-
test/test_pkcs11_luna.rb
|
|
15
|
-
test/test_pkcs11_luna_crypt.rb
|
|
16
6
|
examples/config.rb
|
|
17
7
|
examples/derive_aes_ecdh_key.rb
|
|
18
|
-
examples/sign_verify.rb
|
|
19
8
|
examples/encrypt_decrypt_aes.rb
|
|
20
9
|
examples/encrypt_decrypt_rsa.rb
|
|
21
10
|
examples/mechanism_list.rb
|
|
22
11
|
examples/multithread.rb
|
|
23
12
|
examples/objects_list.rb
|
|
13
|
+
examples/sign_verify.rb
|
|
24
14
|
examples/slot_info.rb
|
|
15
|
+
ext/extconf.rb
|
|
16
|
+
ext/generate_luna_constants.rb
|
|
17
|
+
ext/generate_luna_structs.rb
|
|
18
|
+
ext/pk11l.c
|
|
19
|
+
lib/pkcs11_luna.rb
|
|
20
|
+
lib/pkcs11_luna/extensions.rb
|
|
21
|
+
test/app_id_helper.rb
|
|
22
|
+
test/luna_helper.rb
|
|
23
|
+
test/test_pkcs11_luna.rb
|
|
24
|
+
test/test_pkcs11_luna_crypt.rb
|
|
@@ -4,8 +4,8 @@ Manifest.txt
|
|
|
4
4
|
README_PROTECT_SERVER.rdoc
|
|
5
5
|
Rakefile
|
|
6
6
|
ext/extconf.rb
|
|
7
|
-
ext/
|
|
8
|
-
ext/
|
|
7
|
+
ext/generate_protect_server_constants.rb
|
|
8
|
+
ext/generate_protect_server_structs.rb
|
|
9
9
|
ext/pk11s.c
|
|
10
10
|
lib/pkcs11_protect_server.rb
|
|
11
11
|
lib/pkcs11_protect_server/extensions.rb
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pkcs11
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryosuke Kutsuna
|
|
@@ -12,26 +12,26 @@ bindir: bin
|
|
|
12
12
|
cert_chain:
|
|
13
13
|
- |
|
|
14
14
|
-----BEGIN CERTIFICATE-----
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
15
|
+
MIIDLjCCAhagAwIBAgIBCjANBgkqhkiG9w0BAQsFADA9MQ4wDAYDVQQDDAVrYW5p
|
|
16
|
+
czEXMBUGCgmSJomT8ixkARkWB2NvbWNhcmQxEjAQBgoJkiaJk/IsZAEZFgJkZTAe
|
|
17
|
+
Fw0yMjA0MTExMTMwNTNaFw0yMzA0MTExMTMwNTNaMD0xDjAMBgNVBAMMBWthbmlz
|
|
18
|
+
MRcwFQYKCZImiZPyLGQBGRYHY29tY2FyZDESMBAGCgmSJomT8ixkARkWAmRlMIIB
|
|
19
|
+
IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApop+rNmg35bzRugZ21VMGqI6
|
|
20
|
+
HGzPLO4VHYncWn/xmgPU/ZMcZdfj6MzIaZJ/czXyt4eHpBk1r8QOV3gBXnRXEjVW
|
|
21
|
+
9xi+EdVOkTV2/AVFKThcbTAQGiF/bT1n2M+B1GTybRzMg6hyhOJeGPqIhLfJEpxn
|
|
22
|
+
lJi4+ENAVT4MpqHEAGB8yFoPC0GqiOHQsdHxQV3P3c2OZqG+yJey74QtwA2tLcLn
|
|
23
|
+
Q53c63+VLGsOjODl1yPn/2ejyq8qWu6ahfTxiIlSar2UbwtaQGBDFdb2CXgEufXT
|
|
24
|
+
L7oaPxlmj+Q2oLOfOnInd2Oxop59HoJCQPsg8f921J43NCQGA8VHK6paxIRDLQID
|
|
25
|
+
AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUvgTdT7fe
|
|
26
|
+
x17ugO3IOsjEJwW7KP4wDQYJKoZIhvcNAQELBQADggEBAILiaB/unSVBfX5n7uL8
|
|
27
|
+
veGGCOHuGYhCGqspb6mYiCx0dmV3RPRiEfGDLfzcXbHNx/3AjygcxH4Slr+pmaxr
|
|
28
|
+
04Xli3WurocnjoANSWqCwpHH3OhSVxFgBNrCa3OMWcIr0xKH+I7PXA80SXe0pzfg
|
|
29
|
+
ePjpzTY71j+rcyRJqWiU5/zwdUaCCelBJscxh/0IaNcz67ocCEMRj0n4m5HFEmZL
|
|
30
|
+
9zKkMZFoOjxRQjcL84QU7ZXnnFR5HG8nLw+NqWjo49W6MBQ9HGFda2tk3OpBhyWS
|
|
31
|
+
sc3NyOkGUGdfiee5VRG31Sh3LLON3YGED+zZAS+ZF6598y4vhv8MBLa1Oy357byC
|
|
32
|
+
tTg=
|
|
33
33
|
-----END CERTIFICATE-----
|
|
34
|
-
date:
|
|
34
|
+
date: 2022-04-20 00:00:00.000000000 Z
|
|
35
35
|
dependencies:
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: yard
|
|
@@ -67,14 +67,14 @@ dependencies:
|
|
|
67
67
|
requirements:
|
|
68
68
|
- - "~>"
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version:
|
|
70
|
+
version: '1.2'
|
|
71
71
|
type: :development
|
|
72
72
|
prerelease: false
|
|
73
73
|
version_requirements: !ruby/object:Gem::Requirement
|
|
74
74
|
requirements:
|
|
75
75
|
- - "~>"
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
|
-
version:
|
|
77
|
+
version: '1.2'
|
|
78
78
|
- !ruby/object:Gem::Dependency
|
|
79
79
|
name: minitest
|
|
80
80
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -129,14 +129,14 @@ dependencies:
|
|
|
129
129
|
requirements:
|
|
130
130
|
- - "~>"
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
|
-
version: '3.
|
|
132
|
+
version: '3.23'
|
|
133
133
|
type: :development
|
|
134
134
|
prerelease: false
|
|
135
135
|
version_requirements: !ruby/object:Gem::Requirement
|
|
136
136
|
requirements:
|
|
137
137
|
- - "~>"
|
|
138
138
|
- !ruby/object:Gem::Version
|
|
139
|
-
version: '3.
|
|
139
|
+
version: '3.23'
|
|
140
140
|
description: 'This module allows Ruby programs to interface with "RSA Security Inc.
|
|
141
141
|
PKCS #11 Cryptographic Token Interface (Cryptoki)".'
|
|
142
142
|
email:
|
|
@@ -233,7 +233,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
233
233
|
- !ruby/object:Gem::Version
|
|
234
234
|
version: '0'
|
|
235
235
|
requirements: []
|
|
236
|
-
rubygems_version: 3.
|
|
236
|
+
rubygems_version: 3.3.7
|
|
237
237
|
signing_key:
|
|
238
238
|
specification_version: 4
|
|
239
239
|
summary: PKCS#11 binding for Ruby
|
metadata.gz.sig
CHANGED
|
Binary file
|