Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
matrix-org
Olm
Commits
dac2c106
Commit
dac2c106
authored
Jun 28, 2018
by
Hubert Chathi
Browse files
use void in type signatures for functions with no arguments
parent
f709b062
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/olm/pk.h
View file @
dac2c106
...
...
@@ -26,7 +26,7 @@ extern "C" {
typedef
struct
OlmPkEncryption
OlmPkEncryption
;
/* The size of an encryption object in bytes */
size_t
olm_pk_encryption_size
();
size_t
olm_pk_encryption_size
(
void
);
/** Initialise an encryption object using the supplied memory
* The supplied memory must be at least olm_pk_encryption_size() bytes */
...
...
@@ -64,7 +64,7 @@ size_t olm_pk_mac_length(
);
/** Get the length of a public or ephemeral key */
size_t
olm_pk_key_length
();
size_t
olm_pk_key_length
(
void
);
/** The number of random bytes needed to encrypt a message. */
size_t
olm_pk_encrypt_random_length
(
...
...
@@ -89,7 +89,7 @@ size_t olm_pk_encrypt(
typedef
struct
OlmPkDecryption
OlmPkDecryption
;
/* The size of a decryption object in bytes */
size_t
olm_pk_decryption_size
();
size_t
olm_pk_decryption_size
(
void
);
/** Initialise a decryption object using the supplied memory
* The supplied memory must be at least olm_pk_decryption_size() bytes */
...
...
@@ -109,7 +109,7 @@ size_t olm_clear_pk_decryption(
);
/** The number of random bytes needed to generate a new key. */
size_t
olm_pk_generate_key_random_length
();
size_t
olm_pk_generate_key_random_length
(
void
);
/** Generate a new key to use for decrypting messages. The associated public
* key will be written to the pubkey buffer. Returns olm_error() on failure. If
...
...
src/pk.cpp
View file @
dac2c106
...
...
@@ -43,7 +43,7 @@ const char * olm_pk_encryption_last_error(
return
_olm_error_to_string
(
error
);
}
size_t
olm_pk_encryption_size
()
{
size_t
olm_pk_encryption_size
(
void
)
{
return
sizeof
(
OlmPkEncryption
);
}
...
...
@@ -155,7 +155,7 @@ const char * olm_pk_decryption_last_error(
return
_olm_error_to_string
(
error
);
}
size_t
olm_pk_decryption_size
()
{
size_t
olm_pk_decryption_size
(
void
)
{
return
sizeof
(
OlmPkDecryption
);
}
...
...
@@ -176,11 +176,11 @@ size_t olm_clear_pk_decryption(
return
sizeof
(
OlmPkDecryption
);
}
size_t
olm_pk_generate_key_random_length
()
{
size_t
olm_pk_generate_key_random_length
(
void
)
{
return
CURVE25519_KEY_LENGTH
;
}
size_t
olm_pk_key_length
()
{
size_t
olm_pk_key_length
(
void
)
{
return
olm
::
encode_base64_length
(
CURVE25519_KEY_LENGTH
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment