You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example snippet shows a potential use of @note:
/**
* @brief Looks up a key from the cache or computes it if it didn't exist yet.
* @param cache Cache to perform the lookup on
* @param public_key Public key, used for the lookup and computation.
*
* @return The shared key of length CRYPTO_SHARED_KEY_SIZE, matching the public key and our secret key or nullptr on error.
* @note The cache executes a housekeeping cycle, to remove timed out keys, for the active slot on every lookup.
*/
non_null()
const uint8_t* shared_key_cache_lookup(Shared_Key_Cache *cache, const uint8_t public_key[CRYPTO_PUBLIC_KEY_SIZE]);
The text was updated successfully, but these errors were encountered:
This example snippet shows a potential use of
@note
:The text was updated successfully, but these errors were encountered: