aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHubert Chathi <hubert@uhoreg.ca>2018-06-27 16:35:15 -0400
committerHubert Chathi <hubert@uhoreg.ca>2018-06-27 16:35:15 -0400
commit6a2a2741e8563bbdc4cc2fa3ad41551d2a482d32 (patch)
tree555ec1c679f7fcdd1049eb7c98c960e44bda565a /include
parent28e0c4baca4c380c3bfcee9f4ed71aa0503edde5 (diff)
fix some comments
Diffstat (limited to 'include')
-rw-r--r--include/olm/olm.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/olm/olm.h b/include/olm/olm.h
index 838d817..793aa30 100644
--- a/include/olm/olm.h
+++ b/include/olm/olm.h
@@ -162,7 +162,7 @@ size_t olm_create_account_random_length(
OlmAccount * account
);
-/** Creates a new account. Returns olm_error() on failure. If weren't
+/** Creates a new account. Returns olm_error() on failure. If there weren't
* enough random bytes then olm_account_last_error() will be
* "NOT_ENOUGH_RANDOM" */
size_t olm_create_account(
@@ -409,10 +409,10 @@ size_t olm_decrypt_max_plaintext_length(
* will be "OUTPUT_BUFFER_TOO_SMALL". If the base64 couldn't be decoded then
* olm_session_last_error() will be "INVALID_BASE64". If the message is for
* an unsupported version of the protocol then olm_session_last_error() will
- * be "BAD_MESSAGE_VERSION". If the message couldn't be decoded then
- * olm_session_last_error() will be BAD_MESSAGE_FORMAT".
- * If the MAC on the message was invalid then olm_session_last_error() will
- * be "BAD_MESSAGE_MAC". */
+ * be "BAD_MESSAGE_VERSION". If the message couldn't be decoded then
+ * olm_session_last_error() will be BAD_MESSAGE_FORMAT".
+ * If the MAC on the message was invalid then olm_session_last_error() will
+ * be "BAD_MESSAGE_MAC". */
size_t olm_decrypt(
OlmSession * session,
size_t message_type,
@@ -427,7 +427,7 @@ size_t olm_sha256_length(
/** Calculates the SHA-256 hash of the input and encodes it as base64. If the
* output buffer is smaller than olm_sha256_length() then
- * olm_session_last_error() will be "OUTPUT_BUFFER_TOO_SMALL". */
+ * olm_utility_last_error() will be "OUTPUT_BUFFER_TOO_SMALL". */
size_t olm_sha256(
OlmUtility * utility,
void const * input, size_t input_length,
@@ -436,7 +436,7 @@ size_t olm_sha256(
/** Verify an ed25519 signature. If the key was too small then
* olm_session_last_error will be "INVALID_BASE64". If the signature was invalid
- * then olm_session_last_error() will be "BAD_MESSAGE_MAC". */
+ * then olm_utility_last_error() will be "BAD_MESSAGE_MAC". */
size_t olm_ed25519_verify(
OlmUtility * utility,
void const * key, size_t key_length,
@@ -448,4 +448,4 @@ size_t olm_ed25519_verify(
}
#endif
-#endif /* OLM_HH_ */
+#endif /* OLM_H_ */