Skip to main content
Full working PHP examples for the RMZ license verification API. No external dependencies needed — uses built-in cURL and OpenSSL. All examples are available on GitHub: github.com/Rmz-App/rmz-license-examples

Dependencies

Plain Verification

With E2EE

When E2EE is enabled, all responses are AES-256-GCM encrypted. This example decrypts them using PHP’s built-in openssl_decrypt.

Key Functions

PHP’s openssl_decrypt with aes-256-gcm accepts the authentication tag as a separate parameter, unlike Python’s cryptography library which expects it concatenated with the ciphertext.