ccrypto-ruby 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.release_history.yml +4 -0
- data/Dockerfile.dockerun +29 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +57 -24
- data/ccrypto-ruby.gemspec +4 -1
- data/gen_ecc_const.rb +13 -0
- data/lib/ccrypto/provider.rb +52 -44
- data/lib/ccrypto/ruby/ecc_const.rb +82 -0
- data/lib/ccrypto/ruby/engines/cipher_engine.rb +214 -55
- data/lib/ccrypto/ruby/engines/digest_engine.rb +39 -17
- data/lib/ccrypto/ruby/engines/ecc_engine.rb +89 -14
- data/lib/ccrypto/ruby/engines/ed25519_engine.rb +84 -0
- data/lib/ccrypto/ruby/engines/pkcs7_engine.rb +1 -0
- data/lib/ccrypto/ruby/engines/rsa_engine.rb +9 -0
- data/lib/ccrypto/ruby/engines/x25519_engine.rb +65 -0
- data/lib/ccrypto/ruby/engines/x509_csr_engine.rb +128 -0
- data/lib/ccrypto/ruby/engines/x509_engine.rb +208 -8
- data/lib/ccrypto/ruby/ext/x509_csr.rb +153 -0
- data/lib/ccrypto/ruby/keybundle_store/pem_store.rb +3 -3
- data/lib/ccrypto/ruby/keybundle_store/pkcs12.rb +6 -5
- data/lib/ccrypto/ruby/version.rb +1 -1
- data/lib/ccrypto/ruby.rb +1 -0
- metadata +26 -4
data/lib/ccrypto/ruby.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ccrypto-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: teLogger
|
@@ -39,7 +39,21 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: ed25519
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: x25519
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
44
58
|
requirements:
|
45
59
|
- - ">="
|
@@ -74,7 +88,9 @@ executables: []
|
|
74
88
|
extensions: []
|
75
89
|
extra_rdoc_files: []
|
76
90
|
files:
|
91
|
+
- ".release_history.yml"
|
77
92
|
- ".rspec"
|
93
|
+
- Dockerfile.dockerun
|
78
94
|
- Gemfile
|
79
95
|
- Gemfile.lock
|
80
96
|
- README.md
|
@@ -82,9 +98,11 @@ files:
|
|
82
98
|
- bin/console
|
83
99
|
- bin/setup
|
84
100
|
- ccrypto-ruby.gemspec
|
101
|
+
- gen_ecc_const.rb
|
85
102
|
- lib/ccrypto/provider.rb
|
86
103
|
- lib/ccrypto/ruby.rb
|
87
104
|
- lib/ccrypto/ruby/data_conversion.rb
|
105
|
+
- lib/ccrypto/ruby/ecc_const.rb
|
88
106
|
- lib/ccrypto/ruby/engines/asn1_engine.rb
|
89
107
|
- lib/ccrypto/ruby/engines/asn1_object.rb
|
90
108
|
- lib/ccrypto/ruby/engines/cipher_engine.rb
|
@@ -93,6 +111,7 @@ files:
|
|
93
111
|
- lib/ccrypto/ruby/engines/decompression_engine.rb
|
94
112
|
- lib/ccrypto/ruby/engines/digest_engine.rb
|
95
113
|
- lib/ccrypto/ruby/engines/ecc_engine.rb
|
114
|
+
- lib/ccrypto/ruby/engines/ed25519_engine.rb
|
96
115
|
- lib/ccrypto/ruby/engines/hkdf_engine.rb
|
97
116
|
- lib/ccrypto/ruby/engines/hmac_engine.rb
|
98
117
|
- lib/ccrypto/ruby/engines/pbkdf2_engine.rb
|
@@ -102,9 +121,12 @@ files:
|
|
102
121
|
- lib/ccrypto/ruby/engines/secret_key_engine.rb
|
103
122
|
- lib/ccrypto/ruby/engines/secret_sharing_engine.rb
|
104
123
|
- lib/ccrypto/ruby/engines/secure_random_engine.rb
|
124
|
+
- lib/ccrypto/ruby/engines/x25519_engine.rb
|
125
|
+
- lib/ccrypto/ruby/engines/x509_csr_engine.rb
|
105
126
|
- lib/ccrypto/ruby/engines/x509_engine.rb
|
106
127
|
- lib/ccrypto/ruby/ext/secret_key.rb
|
107
128
|
- lib/ccrypto/ruby/ext/x509_cert.rb
|
129
|
+
- lib/ccrypto/ruby/ext/x509_csr.rb
|
108
130
|
- lib/ccrypto/ruby/keybundle_store/pem_store.rb
|
109
131
|
- lib/ccrypto/ruby/keybundle_store/pkcs12.rb
|
110
132
|
- lib/ccrypto/ruby/utils/comparator.rb
|
@@ -129,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
129
151
|
- !ruby/object:Gem::Version
|
130
152
|
version: '0'
|
131
153
|
requirements: []
|
132
|
-
rubygems_version: 3.
|
154
|
+
rubygems_version: 3.4.10
|
133
155
|
signing_key:
|
134
156
|
specification_version: 4
|
135
157
|
summary: Ccrypto API provider for Ruby runtime
|