summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Krull <f_krull@gmx.de>2020-08-25 20:43:01 +0200
committerFelix Krull <f_krull@gmx.de>2020-08-26 22:32:47 +0200
commitf4d0b1708028e7be6c1d9632145133cbdded0d26 (patch)
tree79ee3da59c0dde3d9c238f354af2d1cc837cd879
parentd5b8929017265597b792928413f5d64ebb223070 (diff)
downloadostree-f4d0b1708028e7be6c1d9632145133cbdded0d26.tar.gz
lib: mark out parameters as out parameters
-rw-r--r--src/libostree/ostree-sign.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libostree/ostree-sign.c b/src/libostree/ostree-sign.c
index e78ffe26..ee7e928d 100644
--- a/src/libostree/ostree-sign.c
+++ b/src/libostree/ostree-sign.c
@@ -271,7 +271,7 @@ ostree_sign_load_pk (OstreeSign *self,
* ostree_sign_data:
* @self: an #OstreeSign object
* @data: the raw data to be signed with pre-loaded secret key
- * @signature: in case of success will contain signature
+ * @signature: (out): in case of success will contain signature
* @cancellable: A #GCancellable
* @error: a #GError
*
@@ -305,6 +305,7 @@ ostree_sign_data (OstreeSign *self,
* @self: an #OstreeSign object
* @data: the raw data to check
* @signatures: the signatures to be checked
+ * @out_success_message: (out) (nullable) (optional): success message returned by the signing engine
* @error: a #GError
*
* Verify given data against signatures with pre-loaded public keys.
@@ -372,6 +373,7 @@ _sign_detached_metadata_append (OstreeSign *self,
* @self: an #OstreeSign object
* @repo: an #OsreeRepo object
* @commit_checksum: SHA256 of given commit to verify
+ * @out_success_message: (out) (nullable) (optional): success message returned by the signing engine
* @cancellable: A #GCancellable
* @error: a #GError
*