summaryrefslogtreecommitdiffstats
path: root/crypto/ct
diff options
context:
space:
mode:
authorEmilia Kasper <emilia@openssl.org>2015-10-09 17:38:47 +0200
committerEmilia Kasper <emilia@openssl.org>2015-10-14 17:19:35 +0200
commitb84939cc96896a5a9a8f5181794e53dce9b5d229 (patch)
tree10b714bf602bebcd1978b999c6b32dd1ca89f1ed /crypto/ct
parent58dd1ce91aeafb513fa9fd09740e3151c2479314 (diff)
ct_locl.h: fix some comments
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/ct')
-rw-r--r--crypto/ct/ct_locl.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/crypto/ct/ct_locl.h b/crypto/ct/ct_locl.h
index a6164336d1..2d8e045cdf 100644
--- a/crypto/ct/ct_locl.h
+++ b/crypto/ct/ct_locl.h
@@ -91,8 +91,9 @@ typedef struct {
unsigned char *sct;
size_t sct_len;
/*
- * If version is SCT_V1 fields below contain components of the SCT. "logid",
- * "ext" and "sig" point to buffers allocated with OPENSSL_malloc().
+ * If version is SCT_V1, fields below contain components of the SCT.
+ * "log_id", "ext" and "sig" point to buffers allocated with
+ * OPENSSL_malloc().
*/
unsigned char *log_id;
size_t log_id_len;
@@ -139,7 +140,7 @@ int SCT_set_version(SCT *sct, sct_version_t version);
int SCT_set_log_entry_type(SCT *sct, log_entry_type_t entry_type);
/*
- * Set the log id of an SCT to point directly to the *logid specified.
+ * Set the log id of an SCT to point directly to the *log_id specified.
* The SCT takes ownership of the specified pointer.
* Returns 1 on success.
*/
@@ -180,7 +181,7 @@ sct_version_t SCT_get_version(const SCT *sct);
log_entry_type_t SCT_get_log_entry_type(const SCT *sct);
/*
- * Set *logid to point to the log id for the SCT. logid must not be NULL.
+ * Set *log_id to point to the log id for the SCT. log_id must not be NULL.
* The SCT retains ownership of this pointer.
* Returns length of the data pointed to.
*/
@@ -193,7 +194,8 @@ uint64_t SCT_get_timestamp(const SCT *sct);
/*
* Return the nid for the signature used by the SCT.
- * Currently NID_sha256WithRSAEncryption or NID_ecdsa_with_SHA256 (or NID_undef)
+ * Currently NID_sha256WithRSAEncryption or NID_ecdsa_with_SHA256
+ * (or NID_undef).
*/
int SCT_get_signature_nid(const SCT *sct);