Skip to main content
Full working Python examples for the RMZ license verification API. 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 uses the cryptography library to decrypt them.

Key Functions

The AESGCM class from cryptography expects the ciphertext and tag concatenated together. That is why the decryption call passes ciphertext + tag as a single value.