PHP和Dart双向加密
PHP and Dart two-way encryption
我正在 PHP 和 Dart 中寻找安全库,这样我就可以从 Dart 发送加密数据并在 PHP 中对其进行解密。我不了解 Dart,所以我需要帮助 please.i 搜索并找到了一些加密库,但 Dart 和 PHP 之间还没有任何共同点。
在 PHP 中你可以使用 openssl_public_encrypt and openssl_private_decrypt, in Dart you can use encrypt library. Also take a look at this answer.
我正在 PHP 和 Dart 中寻找安全库,这样我就可以从 Dart 发送加密数据并在 PHP 中对其进行解密。我不了解 Dart,所以我需要帮助 please.i 搜索并找到了一些加密库,但 Dart 和 PHP 之间还没有任何共同点。
在 PHP 中你可以使用 openssl_public_encrypt and openssl_private_decrypt, in Dart you can use encrypt library. Also take a look at this answer.