Questions tagged [php-openssl]

With the help of this extension, PHP is able to utilize certain OpenSSL functions for performing direct encryption. It is important to note that this tag should not be employed for inquiries related to encrypting traffic over HTTPS.

How can I use PHP's openssl_encrypt() function in Objective-C for iOS development?

I am attempting to utilize the openssl_encrypt() method from php in iOS Objective-C. In order to do so, I have written the following code snippet: #import <CommonCrypto/CommonHMAC.h> #import <CommonCrypto/CommonCryptor.h> - (void)v ...

PHP (specifically openssl) is effective for decrypting data, whereas javascript (cryptojs) has proven to be ineffective

Decryption is functioning using php/openssl, and I can successfully retrieve my plain data. Here is the specific call that is defined: <?php function decryptString($data, $key) { return base64_decode(openssl_decrypt(base64_decode($data), "AES- ...