/usr/include/bzrtp/bzrtp.h is in libbzrtp-dev 1.0.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | /**
@file bzrtp.h
@brief Public entry points to the ZRTP implementation
@author Johan Pascal
@copyright Copyright (C) 2014 Belledonne Communications, Grenoble, France
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef BZRTP_H
#define BZRTP_H
#include <stdint.h>
#include "bctoolbox/crypto.h"
#ifdef _MSC_VER
#ifdef BZRTP_STATIC
#define BZRTP_EXPORT
#else
#ifdef BZRTP_EXPORTS
#define BZRTP_EXPORT __declspec(dllexport)
#else
#define BZRTP_EXPORT __declspec(dllimport)
#endif
#endif
#else
#define BZRTP_EXPORT __attribute__ ((visibility ("default")))
#endif
/**
* Define different types of crypto functions */
#define ZRTP_HASH_TYPE 0x01
#define ZRTP_CIPHERBLOCK_TYPE 0x02
#define ZRTP_AUTHTAG_TYPE 0x04
#define ZRTP_KEYAGREEMENT_TYPE 0x08
#define ZRTP_SAS_TYPE 0x10
/**
* map the differents algorithm (some may not be available) to integer */
#define ZRTP_UNSET_ALGO 0x00
#define ZRTP_HASH_S256 0x11
#define ZRTP_HASH_S384 0x12
#define ZRTP_HASH_N256 0x13
#define ZRTP_HASH_N384 0x14
#define ZRTP_CIPHER_AES1 0x21
#define ZRTP_CIPHER_AES2 0x22
#define ZRTP_CIPHER_AES3 0x23
#define ZRTP_CIPHER_2FS1 0x24
#define ZRTP_CIPHER_2FS2 0x25
#define ZRTP_CIPHER_2FS3 0x26
#define ZRTP_AUTHTAG_HS32 0x31
#define ZRTP_AUTHTAG_HS80 0x32
#define ZRTP_AUTHTAG_SK32 0x33
#define ZRTP_AUTHTAG_SK64 0x34
/**
* WARNING : it is very important to keep the key agreement defined in that order
* as it is used to easily sort them from faster(DH2k) to slower(EC52)
*/
#define ZRTP_KEYAGREEMENT_DH2k 0x41
#define ZRTP_KEYAGREEMENT_EC25 0x42
#define ZRTP_KEYAGREEMENT_DH3k 0x43
#define ZRTP_KEYAGREEMENT_EC38 0x44
#define ZRTP_KEYAGREEMENT_EC52 0x45
#define ZRTP_KEYAGREEMENT_Prsh 0x46
#define ZRTP_KEYAGREEMENT_Mult 0x47
#define ZRTP_SAS_B32 0x51
#define ZRTP_SAS_B256 0x52
/**
* Define to give client indication on which srtp secrets are valid when given
*/
#define ZRTP_SRTP_SECRETS_FOR_SENDER 0x01
#define ZRTP_SRTP_SECRETS_FOR_RECEIVER 0x02
/**
* brief The data structure containing the keys and algorithms to be used by srtp
* Also stores SAS and informations about the crypto algorithms selected during ZRTP negotiation */
typedef struct bzrtpSrtpSecrets_struct {
uint8_t *selfSrtpKey; /**< The key used by local part to encrypt */
uint8_t selfSrtpKeyLength; /**< The length in byte of the key */
uint8_t *selfSrtpSalt; /**< The salt used by local part to encrypt */
uint8_t selfSrtpSaltLength; /**< The length in byte of the salt */
uint8_t *peerSrtpKey; /**< The key used by local part to decrypt */
uint8_t peerSrtpKeyLength; /**< The length in byte of the key */
uint8_t *peerSrtpSalt; /**< The salt used by local part to decrypt */
uint8_t peerSrtpSaltLength; /**< The length in byte of the salt */
uint8_t cipherAlgo; /**< The cipher block algorithm selected durign ZRTP negotiation and used by srtp */
uint8_t cipherKeyLength; /**< The key length in bytes for the cipher block algorithm used by srtp */
uint8_t authTagAlgo; /**< srtp authentication tag algorithm agreed on after Hello packet exchange */
char *sas; /**< a null terminated char containing the Short Authentication String */
uint8_t sasLength; /**< The length of sas, including the termination character */
uint8_t hashAlgo; /**< The hash algo selected during ZRTP negotiation */
uint8_t keyAgreementAlgo; /**< The key agreement algo selected during ZRTP negotiation */
uint8_t sasAlgo; /**< The SAS rendering algo selected during ZRTP negotiation */
uint8_t cacheMismatch; /**< Flag set to 1 in case of ZRTP cache mismatch, may occurs only on first channel(the one computing SAS) */
} bzrtpSrtpSecrets_t;
/* define message levels */
#define BZRTP_MESSAGE_ERROR 0x00
#define BZRTP_MESSAGE_WARNING 0x01
#define BZRTP_MESSAGE_LOG 0x02
#define BZRTP_MESSAGE_DEBUG 0x03
/* define message codes */
#define BZRTP_MESSAGE_CACHEMISMATCH 0x01
#define BZRTP_MESSAGE_PEERVERSIONOBSOLETE 0x02
#define BZRTP_MESSAGE_PEERNOTBZRTP 0x03
/**
* Function pointer used by bzrtp to free memory allocated by callbacks.
**/
typedef void (*zrtpFreeBuffer_callback)(void *);
/**
* @brief All the callback functions provided by the client needed by the ZRTP engine
*/
typedef struct bzrtpCallbacks_struct {
/* messaging status and warnings */
int (* bzrtp_statusMessage)(void *clientData, const uint8_t messageLevel, const uint8_t messageId, const char *messageString); /**< Sending messages to caller: error, warnings, logs, the messageString can be NULL or a NULL terminated string */
int bzrtp_messageLevel; /**< Filter calls to this callback to levels inferiors to this setting (BZRTP_MESSAGE_ERROR, BZRTP_MESSAGE_WARNING, BZRTP_MESSAGE_LOG, BZRTP_MESSAGE_DEBUG )*/
/* sending packets */
int (* bzrtp_sendData)(void *clientData, const uint8_t *packetString, uint16_t packetLength); /**< Send a ZRTP packet to peer. Shall return 0 on success */
/* dealing with SRTP session */
int (* bzrtp_srtpSecretsAvailable)(void *clientData, const bzrtpSrtpSecrets_t *srtpSecrets, uint8_t part); /**< Send the srtp secrets to the client, for either sender, receiver or both according to the part parameter value. Client may wait for the end of ZRTP process before using it */
int (* bzrtp_startSrtpSession)(void *clientData, const bzrtpSrtpSecrets_t *srtpSecrets, int32_t verified); /**< ZRTP process ended well, client is given the SAS and informations about the crypto algo used during ZRTP negotiation. He may start his SRTP session if not done when calling srtpSecretsAvailable */
/* ready for exported keys */
int (* bzrtp_contextReadyForExportedKeys)(void *clientData, int zuid, uint8_t role); /**< Tell the client that this is the time to create any exported keys, s0 is erased just after the call to this callback. Callback is given the peerZID and zuid to adress the correct node in cache and current role which is needed to set a pair of keys for IM encryption */
} bzrtpCallbacks_t;
#define ZRTP_MAGIC_COOKIE 0x5a525450
#define ZRTP_VERSION "1.10"
/* error code definition */
#define BZRTP_ERROR_INVALIDCALLBACKID 0x0001
#define BZRTP_ERROR_CONTEXTNOTREADY 0x0002
#define BZRTP_ERROR_INVALIDCONTEXT 0x0004
#define BZRTP_ERROR_MULTICHANNELNOTSUPPORTEDBYPEER 0x0008
#define BZRTP_ERROR_UNABLETOADDCHANNEL 0x0010
#define BZRTP_ERROR_UNABLETOSTARTCHANNEL 0x0020
#define BZRTP_ERROR_OUTPUTBUFFER_LENGTH 0x0040
#define BZRTP_ERROR_HELLOHASH_MISMATCH 0x0080
#define BZRTP_ERROR_CHANNELALREADYSTARTED 0x0100
#define BZRTP_ERROR_CACHEDISABLED 0x0200
#define BZRTP_ERROR_CACHEMIGRATIONFAILED 0x0400
/* channel status definition */
#define BZRTP_CHANNEL_NOTFOUND 0x1000
#define BZRTP_CHANNEL_INITIALISED 0x1001
#define BZRTP_CHANNEL_ONGOING 0x1002
#define BZRTP_CHANNEL_SECURE 0x1004
#define BZRTP_CHANNEL_ERROR 0x1008
/* role mapping */
#define BZRTP_ROLE_INITIATOR 0
#define BZRTP_ROLE_RESPONDER 1
/* cache related value */
#define BZRTP_CACHE_SETUP 0x2000
#define BZRTP_CACHE_UPDATE 0x2001
#define BZRTP_CACHE_DATA_NOTFOUND 0x2002
/**
* @brief bzrtpContext_t The ZRTP engine context
* Store current state, timers, HMAC and encryption keys
*/
typedef struct bzrtpContext_struct bzrtpContext_t;
/**
* Create context structure and initialise it
*
* @return The ZRTP engine context data
*
*/
BZRTP_EXPORT bzrtpContext_t *bzrtp_createBzrtpContext(void);
/**
* @brief Perform initialisation which can't be done without ZIDcache acces
* - get ZID and create the first channel context
*
* @param[in] context The context to initialise
* @param[in] selfSSRC The SSRC given to the first channel context created within the zrtpContext
*
* @return 0 on success
*/
BZRTP_EXPORT int bzrtp_initBzrtpContext(bzrtpContext_t *context, uint32_t selfSSRC);
/**
* Free memory of context structure to a channel, if all channels are freed, free the global zrtp context
* @param[in] context Context hosting the channel to be destroyed.(note: the context zrtp context itself is destroyed with the last channel)
* @param[in] selfSSRC The SSRC identifying the channel to be destroyed
*
* @return the number of channel still active in this ZRTP context
*/
BZRTP_EXPORT int bzrtp_destroyBzrtpContext(bzrtpContext_t *context, uint32_t selfSSRC);
/**
* @brief Allocate a function pointer to the callback function identified by his id
* @param[in/out] context The zrtp context to set the callback function
* @param[in] cbs A structure containing all the callbacks to supply.
*
* @return 0 on success
*
*/
BZRTP_EXPORT int bzrtp_setCallbacks(bzrtpContext_t *context, const bzrtpCallbacks_t *cbs);
/**
* @brief Set the pointer allowing cache access
*
* @param[in] zidCachePointer Used by internal function to access cache: turn into a sqlite3 pointer if cache is enabled
* @param[in] selfURI Local URI used for this communication, needed to perform cache operation, NULL terminated string, duplicated by this function
* @param[in] peerURI Peer URI used for this communication, needed to perform cache operation, NULL terminated string, duplicated by this function
*
* @return 0 or BZRTP_CACHE_SETUP(if cache is populated by this call) on success, error code otherwise
*/
BZRTP_EXPORT int bzrtp_setZIDCache(bzrtpContext_t *context, void *zidCache, const char *selfURI, const char *peerURI);
/**
* @brief Set the client data pointer in a channel context
* This pointer is returned to the client by the callbacks function, used to store associated contexts (RTP session)
* @param[in/out] zrtpContext The ZRTP context we're dealing with
* @param[in] selfSSRC The SSRC identifying the channel to be linked to the client Data
* @param[in] clientData The clientData pointer, casted to a (void *)
*
* @return 0 on success
*
*/
BZRTP_EXPORT int bzrtp_setClientData(bzrtpContext_t *zrtpContext, uint32_t selfSSRC, void *clientData);
/**
* @brief Add a channel to an existing context
*
* @param[in/out] zrtpContext The zrtp context who will get the additionnal channel
* @param[in] selfSSRC The SSRC given to the channel context
*
* @return 0 on succes, error code otherwise
*/
BZRTP_EXPORT int bzrtp_addChannel(bzrtpContext_t *zrtpContext, uint32_t selfSSRC);
/**
* @brief Start the state machine of the specified channel
* To be able to start an addional channel, we must be in secure state
*
* @param[in/out] zrtpContext The ZRTP context hosting the channel to be started
* @param[in] selfSSRC The SSRC identifying the channel to be started(will start sending Hello packets and listening for some)
*
* @return 0 on succes, error code otherwise
*/
BZRTP_EXPORT int bzrtp_startChannelEngine(bzrtpContext_t *zrtpContext, uint32_t selfSSRC);
/**
* @brief Send the current time to a specified channel, it will check if it has to trig some timer
*
* @param[in/out] zrtpContext The ZRTP context hosting the channel
* @param[in] selfSSRC The SSRC identifying the channel
* @param[in] timeReference The current time in ms
*
* @return 0 on succes, error code otherwise
*/
BZRTP_EXPORT int bzrtp_iterate(bzrtpContext_t *zrtpContext, uint32_t selfSSRC, uint64_t timeReference);
/**
* @brief Process a received message
*
* @param[in/out] zrtpContext The ZRTP context we're dealing with
* @param[in] selfSSRC The SSRC identifying the channel receiving the message
* @param[in] zrtpPacketString The packet received
* @param[in] zrtpPacketStringLength Length of the packet in bytes
*
* @return 0 on success, errorcode otherwise
*/
BZRTP_EXPORT int bzrtp_processMessage(bzrtpContext_t *zrtpContext, uint32_t selfSSRC, uint8_t *zrtpPacketString, uint16_t zrtpPacketStringLength);
/**
* @brief Called by user when the SAS has been verified
*
* @param[in/out] zrtpContext The ZRTP context we're dealing with
*/
BZRTP_EXPORT void bzrtp_SASVerified(bzrtpContext_t *zrtpContext);
/**
* @brief Called by user when the SAS has been set to unverified
*
* @param[in/out] zrtpContext The ZRTP context we're dealing with
*/
BZRTP_EXPORT void bzrtp_resetSASVerified(bzrtpContext_t *zrtpContext);
/**
* @brief Reset the retransmission timer of a given channel.
* Packets will be sent again if appropriate:
* - when in responder role, zrtp engine only answer to packets sent by the initiator.
* - if we are still in discovery phase, Hello or Commit packets will be resent.
*
* @param[in/out] zrtpContext The ZRTP context we're dealing with
* @param[in] selfSSRC The SSRC identifying the channel to reset
*
* return 0 on success, error code otherwise
*/
BZRTP_EXPORT int bzrtp_resetRetransmissionTimer(bzrtpContext_t *zrtpContext, uint32_t selfSSRC);
/**
* @brief Get the supported crypto types
*
* @param[int] zrtpContext The ZRTP context we're dealing with
* @param[in] algoType mapped to defines, must be in [ZRTP_HASH_TYPE, ZRTP_CIPHERBLOCK_TYPE, ZRTP_AUTHTAG_TYPE, ZRTP_KEYAGREEMENT_TYPE or ZRTP_SAS_TYPE]
* @param[out] supportedTypes mapped to uint8_t value of the 4 char strings giving the supported types as string according to rfc section 5.1.2 to 5.1.6
*
* @return number of supported types, 0 on error
*/
BZRTP_EXPORT uint8_t bzrtp_getSupportedCryptoTypes(bzrtpContext_t *zrtpContext, uint8_t algoType, uint8_t supportedTypes[7]);
/**
* @brief set the supported crypto types
*
* @param[int/out] zrtpContext The ZRTP context we're dealing with
* @param[in] algoType mapped to defines, must be in [ZRTP_HASH_TYPE, ZRTP_CIPHERBLOCK_TYPE, ZRTP_AUTHTAG_TYPE, ZRTP_KEYAGREEMENT_TYPE or ZRTP_SAS_TYPE]
* @param[in] supportedTypes mapped to uint8_t value of the 4 char strings giving the supported types as string according to rfc section 5.1.2 to 5.1.6
* @param[in] supportedTypesCount number of supported crypto types
*/
BZRTP_EXPORT void bzrtp_setSupportedCryptoTypes(bzrtpContext_t *zrtpContext, uint8_t algoType, uint8_t supportedTypes[7], uint8_t supportedTypesCount);
/**
* @brief Set the peer hello hash given by signaling to a ZRTP channel
*
* @param[in/out] zrtpContext The ZRTP context we're dealing with
* @param[in] selfSSRC The SSRC identifying the channel
* @param[in] peerHelloHashHexString A NULL terminated string containing the hexadecimal form of the hash received in signaling,
* may contain ZRTP version as header.
* @param[in] peerHelloHashHexStringLength Length of hash string (shall be at least 64 as the hash is a SHA256 so 32 bytes,
* more if it contains the version header)
*
* @return 0 on success, errorcode otherwise
*/
BZRTP_EXPORT int bzrtp_setPeerHelloHash(bzrtpContext_t *zrtpContext, uint32_t selfSSRC, uint8_t *peerHelloHashHexString, size_t peerHelloHashHexStringLength);
/**
* @brief Get the self hello hash from ZRTP channel
*
* @param[in/out] zrtpContext The ZRTP context we're dealing with
* @param[in] selfSSRC The SSRC identifying the channel
* @param[out] output A NULL terminated string containing the hexadecimal form of the hash received in signaling,
* contain ZRTP version as header. Buffer must be allocated by caller.
* @param[in] outputLength Length of output buffer, shall be at least 70 : 5 chars for version, 64 for the hash itself, SHA256), NULL termination
*
* @return 0 on success, errorcode otherwise
*/
BZRTP_EXPORT int bzrtp_getSelfHelloHash(bzrtpContext_t *zrtpContext, uint32_t selfSSRC, uint8_t *output, size_t outputLength);
/**
* @brief Get the channel status
*
* @param[in] zrtpContext The ZRTP context we're dealing with
* @param[in] selfSSRC The SSRC identifying the channel
*
* @return BZRTP_CHANNEL_NOTFOUND no channel matching this SSRC doesn't exists in the zrtp context
* BZRTP_CHANNEL_INITIALISED channel initialised but not started
* BZRTP_CHANNEL_ONGOING ZRTP key exchange in ongoing
* BZRTP_CHANNEL_SECURE Channel is secure
* BZRTP_CHANNEL_ERROR An error occured on this channel
*/
BZRTP_EXPORT int bzrtp_getChannelStatus(bzrtpContext_t *zrtpContext, uint32_t selfSSRC);
/*** Cache related functions ***/
/**
* @brief Check the given sqlite3 DB and create requested tables if needed
* Also manage DB schema upgrade
* @param[in/out] db Pointer to the sqlite3 db open connection
* Use a void * to keep this API when building cacheless
*
* @return 0 on success, BZRTP_CACHE_SETUP if cache was empty, BZRTP_CACHE_UPDATE if db structure was updated, error code otherwise
*/
BZRTP_EXPORT int bzrtp_initCache(void *db);
/**
* @brief : retrieve ZID from cache
* ZID is randomly generated if cache is empty or inexistant
* ZID is randomly generated in case of cacheless implementation(db argument is NULL)
*
* @param[in/out] db sqlite3 database(or NULL if we don't use cache at runtime)
* Use a void * to keep this API when building cacheless
* @param[in] selfURI the sip uri of local user, NULL terminated string
* @param[out] selfZID the ZID, retrieved from cache or randomly generated
* @param[in] RNGContext A RNG context used to generate ZID if needed
*
* @return 0 on success, or BZRTP_CACHE_DATA_NOTFOUND if no ZID matching the URI was found and no RNGContext is given to generate one
*/
BZRTP_EXPORT int bzrtp_getSelfZID(void *db, const char *selfURI, uint8_t selfZID[12], bctbx_rng_context_t *RNGContext);
/**
* @brief get the cache internal id used to bind local uri(hence local ZID associated to it)<->peer uri/peer ZID.
* Providing a valid local URI(already present in cache), a peer ZID and peer URI will return the zuid creating it if needed
* Any pair ZID/sipURI shall identify an account on a device.
*
* @param[in/out] db the opened sqlite database pointer
* @param[in] selfURI local URI, must be already associated to a ZID in the DB(association is performed by any call of getSelfZID on this URI)
* @param[in] peerURI peer URI
* @param[in] peerZID peer ZID
* @param[out] zuid the internal db reference to the data row matching this particular pair of correspondant
*
* @return 0 on success, error code otherwise
*/
BZRTP_EXPORT int bzrtp_cache_getZuid(void *dbPointer, const char *selfURI, const char *peerURI, const uint8_t peerZID[12], int *zuid);
/**
* @brief Write(insert or update) data in cache, adressing it by zuid (ZID/URI binding id used in cache)
* Get arrays of column names, values to be inserted, lengths of theses values
* All three arrays must be the same lenght: columnsCount
* If the row isn't present in the given table, it will be inserted
*
* @param[in/out] dbPointer Pointer to an already opened sqlite db
* @param[in] zuid The DB internal id to adress the correct row(binding between local uri and peer ZID+URI)
* @param[in] tableName The name of the table to write in the db, must already exists. Null terminated string
* @param[in] columns An array of null terminated strings containing the name of the columns to update
* @param[in] values An array of buffers containing the values to insert/update matching the order of columns array
* @param[in] lengths An array of integer containing the lengths of values array buffer matching the order of columns array
* @param[in] columnsCount length common to columns,values and lengths arrays
*
* @return 0 on succes, error code otherwise
*/
BZRTP_EXPORT int bzrtp_cache_write(void *dbPointer, int zuid, char *tableName, char **columns, uint8_t **values, size_t *lengths, uint8_t columnsCount);
/**
* @brief Read data from specified table/columns from cache adressing it by zuid (ZID/URI binding id used in cache)
* Get arrays of column names, values to be read, and the number of colums to be read
* Produce an array of values(uint8_t arrays) and a array of corresponding lengths
* Values memory is allocated by this function and must be freed by caller
*
* @param[in/out] dbPointer Pointer to an already opened sqlite db
* @param[in] zuid The DB internal id to adress the correct row(binding between local uri and peer ZID+URI)
* @param[in] tableName The name of the table to read in the db. Null terminated string
* @param[in] columns An array of null terminated strings containing the name of the columns to read, the array's length is columnsCount
* @param[out] values An array of uint8_t pointers, each one will be allocated to the read value and they must be freed by caller
* @param[out] lengths An array of integer containing the lengths of values array buffer read
* @param[in] columnsCount length common to columns,values and lengths arrays
*
* @return 0 on succes, error code otherwise
*/
BZRTP_EXPORT int bzrtp_cache_read(void *dbPointer, int zuid, char *tableName, char **columns, uint8_t **values, size_t *lengths, uint8_t columnsCount);
/**
* @brief Perform migration from xml version to sqlite3 version of cache
* Warning: new version of cache associate a ZID to each local URI, the old one did not
* the migration function will associate any data in the cache to the sip URI given in parameter which shall be the default URI
* @param[in] cacheXml a pointer to an xmlDocPtr structure containing the old cache to be migrated
* @param[in/out] cacheSqlite a pointer to an sqlite3 structure containing a cache initialised using bzrtp_cache_init function
* @param[in] selfURI default sip URI for this end point, NULL terminated char
*
* @return 0 on success, BZRTP_ERROR_CACHEDISABLED when bzrtp was not compiled with cache enabled, BZRTP_ERROR_CACHEMIGRATIONFAILED on error during migration
*/
BZRTP_EXPORT int bzrtp_cache_migration(void *cacheXmlPtr, void *cacheSqlite, const char *selfURI);
/*
* @brief Allow client to compute an exported according to RFC section 4.5.2
* Check the context is ready(we already have a master exported key and KDF context)
* and run KDF(master exported key, "Label", KDF_Context, negotiated hash Length)
*
* @param[in] zrtpContext The ZRTP context we're dealing with
* @param[in] label Label used in the KDF
* @param[in] labelLength Length of previous buffer
* @param[out] derivedKey Buffer to store the derived key
* @param[in/out] derivedKeyLength Length of previous buffer(updated to fit actual length of data produced if too long)
*
* @return 0 on succes, error code otherwise
*/
BZRTP_EXPORT int bzrtp_exportKey(bzrtpContext_t *zrtpContext, char *label, size_t labelLength, uint8_t *derivedKey, size_t *derivedKeyLength);
#endif /* ifndef BZRTP_H */
|