<?php
$param= file_get_contents("php://input");
$param = json_decode($param,true);
$param['text'] = base64_decode($param['text']);
$data = sodium_crypto_aead_aes256gcm_decrypt($param['text'],$param['associated_data'],$param['nonce'],$param['apikey_v3']);
echo $data;
