Skip to content

Commit

Permalink
address review remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusTeufelberger committed Jul 28, 2020
1 parent fb9a5c5 commit debafd2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions plugins/modules/openssl_signature.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
DOCUMENTATION = r'''
---
module: openssl_signature
version_added: 1.1.0
short_description: Sign data with openssl
description:
- This module allows one to sign data using a private key.
Expand Down
7 changes: 4 additions & 3 deletions plugins/modules/openssl_signature_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
DOCUMENTATION = r'''
---
module: openssl_signature_info
version_added: 1.1.0
short_description: Verify signatures with openssl
description:
- This module allows one to verify a signature for a file via a certificate.
Expand Down Expand Up @@ -61,8 +62,8 @@
DSA and ECDSA keys: C(cryptography) >= 1.5
ed448 and ed25519 keys: C(cryptography) >= 2.6
seealso:
- module: openssl_signature
- module: x509_certificate
- module: community.crypto.openssl_signature
- module: community.crypto.x509_certificate
'''

EXAMPLES = r'''
Expand All @@ -87,7 +88,7 @@

RETURN = r'''
valid:
description: True means the signature was valid for the given file, False means it wasn't.
description: C(true) means the signature was valid for the given file, C(false) means it wasn't.
returned: success
type: bool
'''
Expand Down

0 comments on commit debafd2

Please sign in to comment.