diff options
author | Tim Smith <tsmith@chef.io> | 2018-08-27 10:34:48 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-08-27 10:34:48 -0700 |
commit | 38d5855aec9ae30366ed957a46e45a6f57cd5037 (patch) | |
tree | 2d826d728605b2d5ab2404238f742ada32c581d2 | |
parent | 30cac217fc60d10118957717a6c3d7f2dcca33e8 (diff) | |
download | chef-38d5855aec9ae30366ed957a46e45a6f57cd5037.tar.gz |
Update descriptions for the EC curve resources
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | lib/chef/resource/openssl_ec_private_key.rb | 3 | ||||
-rw-r--r-- | lib/chef/resource/openssl_ec_public_key.rb | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/chef/resource/openssl_ec_private_key.rb b/lib/chef/resource/openssl_ec_private_key.rb index 37dd61162f..3da4e79fc2 100644 --- a/lib/chef/resource/openssl_ec_private_key.rb +++ b/lib/chef/resource/openssl_ec_private_key.rb @@ -1,5 +1,6 @@ # # Copyright:: Copyright 2018, Chef Software Inc. +# Author:: Julien Huon # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -26,7 +27,7 @@ class Chef preview_resource true resource_name :openssl_ec_private_key - description "Use the openssl_ec_private_key resource to generate generate ec private key files. If a valid ec key file can be opened at the specified location, no new file will be created. If the EC key file cannot be opened, either because it does not exist or because the password to the EC key file does not match the password in the recipe, it will be overwritten." + description "Use the openssl_ec_private_key resource to generate generate elliptic curve (EC) private key files. If a valid EC key file can be opened at the specified location, no new file will be created. If the EC key file cannot be opened, either because it does not exist or because the password to the EC key file does not match the password in the recipe, it will be overwritten." introduced "14.4" property :path, String, diff --git a/lib/chef/resource/openssl_ec_public_key.rb b/lib/chef/resource/openssl_ec_public_key.rb index 50c3bd192c..50b1da337f 100644 --- a/lib/chef/resource/openssl_ec_public_key.rb +++ b/lib/chef/resource/openssl_ec_public_key.rb @@ -1,5 +1,6 @@ # # Copyright:: Copyright 2018, Chef Software Inc. +# Author:: Julien Huon # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -26,7 +27,7 @@ class Chef preview_resource true resource_name :openssl_ec_public_key - description "Use the openssl_ec_public_key resource to generate ec public key files given a private key." + description "Use the openssl_ec_public_key resource to generate elliptic curve (EC) public key files given a private key." introduced "14.4" property :path, String, |