#include "../include/paddle_model_encrypt.h" #include "../include/paddle_stream_decrypt.h" #include #include #include int main(){ std::string key_data = paddle_generate_random_key(); std::cout << "key is:" << key_data << std::endl; std::istringstream isst(std::string("hello world !")); std::ostringstream osst; int enc_ret = encrypt_stream(key_data, isst, osst); if (enc_ret != 0){ std::cout << "ERROR paddle_encrypt_stream" << enc_ret <