openssl_provider 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1cf52d1e505713f31292cad7439b13c4b6480fcc5a4dcd9a8c643be325b65872
4
+ data.tar.gz: e4875ce50926aa3195cb02cd0f08c1c7467c89fe834a28cd8a53eafc38bc2ef9
5
+ SHA512:
6
+ metadata.gz: f53bc152eb4875e4781b5260c19ea55e182618f4049a7acd444d1e88cbc0950242c453ec94001c12c58f0eee1f00bcb9405548aad33856b8f3f84ec6bc113978
7
+ data.tar.gz: f765fe14e7947f7f2249d68e0202c6a8c9498a07f8883f57daf01d85f7c12df93597a8f325a004fc919044e65766001db7f0da765c2f4079ea433e7e426fa748
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-05-28
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at ikusawasi@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in openssl_provider.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+ gem "rake-compiler"
10
+ gem "test-unit", "~> 3.0"
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 qwyng
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # OpenSSL::Provider
2
+ The concept of provider was introduced with OpenSSL 3.
3
+ https://www.openssl.org/docs/man3.0/man7/migration_guide.html
4
+
5
+ With OpenSSL 3, it is possible to specify the provider to be used by any application, either programmatically or through a configuration file.
6
+ However, `ruby/openssl` 3.1.0 does not have an API to load providers without configuration file.
7
+ This Gem provides `OpenSSL::Provider` class with APIs to load providers.
8
+
9
+
10
+ ## Installation
11
+
12
+ Install the gem and add to the application's Gemfile by executing:
13
+
14
+ $ bundle add openssl_provider
15
+
16
+ If bundler is not being used to manage dependencies, install the gem by executing:
17
+
18
+ $ gem install openssl_provider
19
+
20
+ ## Usage
21
+
22
+ ```ruby
23
+ require 'openssl_provider'
24
+
25
+ legacy = OpenSSL::Provider.load("legacy")
26
+
27
+ OpenSSL::Provider.providers
28
+ # => => [#<OpenSSL::Provider name="default">, #<OpenSSL::Provider name="legacy">]
29
+
30
+ # default provider does not support RC4
31
+ # OpenSSL::Cipher.new("RC4")
32
+ # => OpenSSL::Cipher::CipherError: unsupported
33
+ cipher = OpenSSL::Cipher.new("RC4")
34
+
35
+ # do something with cipher...
36
+
37
+ OpenSSL::Provider.unload(legacy)
38
+ ```
39
+
40
+ ## Contributing
41
+
42
+ Bug reports and pull requests are welcome on GitHub at https://github.com/QWYNG/openssl_provider. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/QWYNG/openssl_provider/blob/main/CODE_OF_CONDUCT.md).
43
+
44
+ ## License
45
+
46
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
47
+
48
+ ## Code of Conduct
49
+
50
+ Everyone interacting in the OpensslProvider project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/QWYNG/openssl_provider/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+ require "rake/extensiontask"
6
+
7
+ Rake::ExtensionTask.new("openssl_provider")
8
+ Rake::TestTask.new(:test) do |t|
9
+ t.libs << "test"
10
+ t.libs << "lib"
11
+ t.test_files = FileList["test/**/*_test.rb"]
12
+ end
13
+ Rake::Task[:test].prerequisites << :compile
14
+
15
+ task default: :test
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "mkmf"
4
+ result = pkg_config("openssl") && have_header("openssl/ssl.h")
5
+ unless result
6
+ Logging::message "openssl could not be found"
7
+ exit 1
8
+ end
9
+
10
+ create_makefile("openssl_provider")
@@ -0,0 +1,133 @@
1
+ #include <ruby.h>
2
+ #include <openssl/provider.h>
3
+
4
+ VALUE cProvider;
5
+ VALUE eProviderError;
6
+
7
+ #define NewProvider(klass) \
8
+ TypedData_Wrap_Struct((klass), &ossl_provider_type, 0)
9
+ #define SetProvider(obj, provider) do { \
10
+ if (!(provider)) { \
11
+ rb_raise(rb_eRuntimeError, "Provider wasn't initialized."); \
12
+ } \
13
+ RTYPEDDATA_DATA(obj) = (provider); \
14
+ } while(0)
15
+ #define GetProvider(obj, provider) do { \
16
+ TypedData_Get_Struct((obj), OSSL_PROVIDER, &ossl_provider_type, (provider)); \
17
+ if (!(provider)) { \
18
+ rb_raise(rb_eRuntimeError, "PROVIDER wasn't initialized."); \
19
+ } \
20
+ } while (0)
21
+
22
+ static const rb_data_type_t ossl_provider_type = {
23
+ "OpenSSL/Provider",
24
+ {
25
+ 0
26
+ },
27
+ 0, 0, RUBY_TYPED_FREE_IMMEDIATELY,
28
+ };
29
+
30
+ static VALUE
31
+ ossl_provider_s_load(VALUE klass, VALUE name)
32
+ {
33
+ OSSL_PROVIDER *provider = NULL;
34
+ VALUE obj;
35
+
36
+ const char *provider_name_ptr = StringValueCStr(name);
37
+
38
+ provider = OSSL_PROVIDER_load(NULL, provider_name_ptr);
39
+ if (provider == NULL) {
40
+ rb_raise(eProviderError, "Failed to load %s provider\n", provider_name_ptr);
41
+ }
42
+ obj = NewProvider(klass);
43
+ SetProvider(obj, provider);
44
+
45
+ return obj;
46
+ }
47
+
48
+ static VALUE
49
+ ossl_provider_s_unload(VALUE klass, VALUE obj)
50
+ {
51
+ OSSL_PROVIDER *prov;
52
+ GetProvider(obj, prov);
53
+
54
+ int result = OSSL_PROVIDER_unload(prov);
55
+
56
+ if (result != 1) {
57
+ return Qfalse;
58
+ }
59
+ return Qtrue;
60
+ }
61
+
62
+ DEFINE_STACK_OF(OSSL_PROVIDER)
63
+ static int provider_cmp(const OSSL_PROVIDER * const *a,
64
+ const OSSL_PROVIDER * const *b)
65
+ {
66
+ return strcmp(OSSL_PROVIDER_get0_name(*a), OSSL_PROVIDER_get0_name(*b));
67
+ }
68
+ static int collect_providers(OSSL_PROVIDER *provider, void *stack)
69
+ {
70
+ STACK_OF(OSSL_PROVIDER) *provider_stack = stack;
71
+
72
+ sk_OSSL_PROVIDER_push(provider_stack, provider);
73
+ return 1;
74
+ }
75
+
76
+ static VALUE
77
+ ossl_provider_s_providers(VALUE klass)
78
+ {
79
+ STACK_OF(OSSL_PROVIDER) *providers = sk_OSSL_PROVIDER_new(provider_cmp);
80
+ VALUE ary = rb_ary_new();
81
+
82
+ OSSL_PROVIDER_do_all(NULL, &collect_providers, providers);
83
+ sk_OSSL_PROVIDER_sort(providers);
84
+ for (int i = 0; i < sk_OSSL_PROVIDER_num(providers); i++) {
85
+ OSSL_PROVIDER *provider = sk_OSSL_PROVIDER_value(providers, i);
86
+ VALUE obj = NewProvider(klass);
87
+ SetProvider(obj, provider);
88
+
89
+ rb_ary_push(ary, obj);
90
+ }
91
+ sk_OSSL_PROVIDER_free(providers);
92
+ return ary;
93
+ }
94
+
95
+ static VALUE
96
+ ossl_provider_get_name(VALUE self)
97
+ {
98
+ OSSL_PROVIDER *prov;
99
+ GetProvider(self, prov);
100
+
101
+ return rb_str_new2(OSSL_PROVIDER_get0_name(prov));
102
+ }
103
+
104
+ static VALUE
105
+ ossl_provider_inspect(VALUE self)
106
+ {
107
+ OSSL_PROVIDER *prov;
108
+ GetProvider(self, prov);
109
+
110
+ return rb_sprintf("#<%"PRIsVALUE" name=\"%s\">",
111
+ rb_obj_class(self), OSSL_PROVIDER_get0_name(prov));
112
+ }
113
+
114
+ void
115
+ Init_openssl_provider(void)
116
+ {
117
+
118
+ VALUE mOSSL;
119
+ VALUE eOSSLError;
120
+
121
+ rb_require("openssl");
122
+ mOSSL = rb_path2class("OpenSSL");
123
+ eOSSLError = rb_path2class("OpenSSL::OpenSSLError");
124
+ cProvider = rb_define_class_under(mOSSL, "Provider", rb_cObject);
125
+
126
+ eProviderError = rb_define_class_under(cProvider, "ProviderError", eOSSLError);
127
+ rb_define_singleton_method(cProvider, "load", ossl_provider_s_load, 1);
128
+ rb_define_singleton_method(cProvider, "unload", ossl_provider_s_unload, 1);
129
+ rb_define_singleton_method(cProvider, "providers", ossl_provider_s_providers, 0);
130
+
131
+ rb_define_method(cProvider, "name", ossl_provider_get_name, 0);
132
+ rb_define_method(cProvider, "inspect", ossl_provider_inspect, 0);
133
+ }
@@ -0,0 +1,15 @@
1
+ #include <openssl/opensslv.h>
2
+
3
+ #define OSSL_OPENSSL_PREREQ(maj, min, pat) \
4
+ (OPENSSL_VERSION_NUMBER >= ((maj << 28) | (min << 20) | (pat << 12)))
5
+
6
+ #if OSSL_OPENSSL_PREREQ(3, 0, 0)
7
+
8
+ #if !defined(OSSL_PROVIDER_H)
9
+ #define OSSL_PROVIDER_H
10
+
11
+ extern VALUE cProvider;
12
+ extern VALUE eProviderError;
13
+
14
+ void Init_openssl_provider(void);
15
+ #endif
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "openssl_provider"
5
+ spec.version = "0.1.0"
6
+ spec.authors = ["qwyng"]
7
+ spec.email = ["ikusawasi@gmail.com"]
8
+
9
+ spec.summary = "Provides APIs to load OpenSSL providers"
10
+ spec.homepage = "https://github.com/QWYNG/openssl_provider"
11
+ spec.license = "MIT"
12
+ spec.required_ruby_version = ">= 3.1.0"
13
+
14
+ spec.metadata["homepage_uri"] = spec.homepage
15
+ spec.metadata["source_code_uri"] = "https://github.com/QWYNG/openssl_provider"
16
+ spec.metadata["changelog_uri"] = "https://github.com/QWYNG/openssl_provider/blob/master/CHANGELOG.md"
17
+
18
+ spec.extensions = ["ext/openssl_provider/extconf.rb"]
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(__dir__) do
23
+ `git ls-files -z`.split("\x0").reject do |f|
24
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
25
+ end
26
+ end
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ spec.add_dependency "openssl", "~> 3.0"
32
+
33
+ # For more information and examples about making a new gem, check out our
34
+ # guide at: https://bundler.io/guides/creating_gem.html
35
+ end
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: openssl_provider
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - qwyng
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-05-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: openssl
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ description:
28
+ email:
29
+ - ikusawasi@gmail.com
30
+ executables: []
31
+ extensions:
32
+ - ext/openssl_provider/extconf.rb
33
+ extra_rdoc_files: []
34
+ files:
35
+ - CHANGELOG.md
36
+ - CODE_OF_CONDUCT.md
37
+ - Gemfile
38
+ - LICENSE.txt
39
+ - README.md
40
+ - Rakefile
41
+ - ext/openssl_provider/extconf.rb
42
+ - ext/openssl_provider/provider.c
43
+ - ext/openssl_provider/provider.h
44
+ - openssl_provider.gemspec
45
+ homepage: https://github.com/QWYNG/openssl_provider
46
+ licenses:
47
+ - MIT
48
+ metadata:
49
+ homepage_uri: https://github.com/QWYNG/openssl_provider
50
+ source_code_uri: https://github.com/QWYNG/openssl_provider
51
+ changelog_uri: https://github.com/QWYNG/openssl_provider/blob/master/CHANGELOG.md
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 3.1.0
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubygems_version: 3.4.10
68
+ signing_key:
69
+ specification_version: 4
70
+ summary: Provides APIs to load OpenSSL providers
71
+ test_files: []