Lines Matching refs:sodium_malloc
3101 key = (unsigned char *) sodium_malloc(crypto_aead_aes256gcm_KEYBYTES); in tv()
3102 nonce = (unsigned char *) sodium_malloc(crypto_aead_aes256gcm_NPUBBYTES); in tv()
3103 mac = (unsigned char *) sodium_malloc(crypto_aead_aes256gcm_ABYTES); in tv()
3115 message = (unsigned char *) sodium_malloc(message_len); in tv()
3120 ad = (unsigned char *) sodium_malloc(ad_len); in tv()
3126 expected_ciphertext = (unsigned char *) sodium_malloc(ciphertext_len); in tv()
3135 ciphertext = (unsigned char *) sodium_malloc(ciphertext_len); in tv()
3136 detached_ciphertext = (unsigned char *) sodium_malloc(detached_ciphertext_len); in tv()
3148 hex = (char *) sodium_malloc((size_t) ciphertext_len * 2 + 1); in tv()
3162 hex = (char *) sodium_malloc((size_t) found_ciphertext_len * 2 + 1); in tv()
3169 decrypted = (unsigned char *) sodium_malloc(message_len); in tv()