aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2018-09-19 14:10:12 +0100
committerDavid Baker <dave@matrix.org>2018-09-19 14:10:12 +0100
commit65d4ac19c82478f7719a47879b1c0ffa99dc19d8 (patch)
treee351a066d3a6c03f603a2d2870a2b12053a297df /src
parented02c217e6f7e95e495c241c8ff27ef6b5dd8417 (diff)
Fix output buffer length check
...when generating a key in PkDecryption. The pubkey is base64ed on the output, so will be longer.
Diffstat (limited to 'src')
-rw-r--r--src/pk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pk.cpp b/src/pk.cpp
index b8fe95b..e646dc4 100644
--- a/src/pk.cpp
+++ b/src/pk.cpp
@@ -189,7 +189,7 @@ size_t olm_pk_generate_key(
void * pubkey, size_t pubkey_length,
void * random, size_t random_length
) {
- if (pubkey_length < CURVE25519_KEY_LENGTH) {
+ if (pubkey_length < olm_pk_key_length()) {
decryption->last_error =
OlmErrorCode::OLM_OUTPUT_BUFFER_TOO_SMALL;
return std::size_t(-1);