diff options
author | George Hazan <george.hazan@gmail.com> | 2016-01-26 08:28:32 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-01-26 08:28:32 +0000 |
commit | 2a82a9154f9d6e0b5658c82cd346051017339a1e (patch) | |
tree | 8321c2d1897d4026e68064241014eef4a57ddc9d /libs/libaxolotl/src/fingerprint.h | |
parent | 80148955f82c205cc94f0112e0fbfe8f91bc4330 (diff) |
libaxolotl - initial commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@16169 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'libs/libaxolotl/src/fingerprint.h')
-rw-r--r-- | libs/libaxolotl/src/fingerprint.h | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/libs/libaxolotl/src/fingerprint.h b/libs/libaxolotl/src/fingerprint.h new file mode 100644 index 0000000000..25d80a4e77 --- /dev/null +++ b/libs/libaxolotl/src/fingerprint.h @@ -0,0 +1,86 @@ +#ifndef FINGERPRINT_H +#define FINGERPRINT_H + +#include "axolotl_types.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Construct a fingerprint generator for 60 digit numerics. + * + * @param generator set to a freshly allocated generator instance + * @param iterations The number of internal iterations to perform in the process of + * generating a fingerprint. This needs to be constant, and synchronized + * across all clients. + * + * The higher the iteration count, the higher the security level: + * + * - 1024 ~ 109.7 bits + * - 1400 > 110 bits + * - 5200 > 112 bits + * @param global_context the global library context + * @return 0 on success, or negative on failure + */ +int fingerprint_generator_create(fingerprint_generator **generator, int iterations, axolotl_context *global_context); + +/** + * Generate a scannable and displayble fingerprint. + * + * @param local_stable_identifier The client's "stable" identifier. + * @param local_identity_key The client's identity key. + * @param remote_stable_identifier The remote party's "stable" identifier. + * @param remote_identity_key The remote party's identity key. + * @param fingerprint Set to a freshly allocated unique fingerprint for this conversation + * @return 0 on success, or negative on failure + */ +int fingerprint_generator_create_for(fingerprint_generator *generator, + const char *local_stable_identifier, ec_public_key *local_identity_key, + const char *remote_stable_identifier, ec_public_key *remote_identity_key, + fingerprint **fingerprint_val); + +void fingerprint_generator_free(fingerprint_generator *generator); + +int fingerprint_create(fingerprint **fingerprint_val, displayable_fingerprint *displayable, scannable_fingerprint *scannable); +displayable_fingerprint *fingerprint_get_displayable(fingerprint *fingerprint_val); +scannable_fingerprint *fingerprint_get_scannable(fingerprint *fingerprint_val); +void fingerprint_destroy(axolotl_type_base *type); + +int displayable_fingerprint_create(displayable_fingerprint **displayable, const char *local_fingerprint, const char *remote_fingerprint); +const char *displayable_fingerprint_local(displayable_fingerprint *displayable); +const char *displayable_fingerprint_remote(displayable_fingerprint *displayable); +const char *displayable_fingerprint_text(displayable_fingerprint *displayable); +void displayable_fingerprint_destroy(axolotl_type_base *type); + +int scannable_fingerprint_create(scannable_fingerprint **scannable, + uint32_t version, + const char *local_stable_identifier, ec_public_key *local_identity_key, + const char *remote_stable_identifier, ec_public_key *remote_identity_key); + +int scannable_fingerprint_serialize(axolotl_buffer **buffer, const scannable_fingerprint *scannable); +int scannable_fingerprint_deserialize(scannable_fingerprint **scannable, const uint8_t *data, size_t len, axolotl_context *global_context); +uint32_t scannable_fingerprint_get_version(scannable_fingerprint *scannable); +const char *scannable_fingerprint_get_local_stable_identifier(scannable_fingerprint *scannable); +ec_public_key *scannable_fingerprint_get_local_identity_key(scannable_fingerprint *scannable); +const char *scannable_fingerprint_get_remote_stable_identifier(scannable_fingerprint *scannable); +ec_public_key *scannable_fingerprint_get_remote_identity_key(scannable_fingerprint *scannable); + +/** + * Compare a scanned QR code with what we expect. + * @param scannable The local scannable data + * @param other_scannable The data from the scanned code + * @retval 1 if the scannable codes match + * @retval 0 if the scannable codes do not match + * @retval AX_ERR_FP_VERSION_MISMATCH if the scanned fingerprint is the wrong version + * @retval AX_ERR_FP_IDENT_MISMATCH if the scanned fingerprint is for the wrong stable identifier + */ +int scannable_fingerprint_compare(scannable_fingerprint *scannable, const scannable_fingerprint *other_scannable); + +void scannable_fingerprint_destroy(axolotl_type_base *type); + +#ifdef __cplusplus +} +#endif + +#endif /* FINGERPRINT_H */ |