Downloads Center
Get the latest stable releases of Oryx desktop client agents. Download offline installer binaries and check SHA checksum files.
Oryx Convey v0.1.0
Stable release (3.16 GB). Universal neural translation and local OCR models package.
Oryx Convey Bharat v0.1.0
Stable release (677 MB). Indic regional language and dialect translation package.
ProductVersionSizeSHA-256 Checksum
Note: Windows users may trigger a SmartScreen alert due to certificate signature sandboxing. Ensure you verify the installer SHA-256 checksum against this registry table prior to execution.
Licensing SDK Guide
Easily embed local signature verification in your product application using our precompiled Python helper SDK.
from licensing_sdk import LicensingSDK
sdk = LicensingSDK(server_url="https://api.oryx.com")
# 1. Obtain local machine's secure HWID fingerprint
hwid = sdk.get_hwid()
print(f"Machine HWID: {hwid}")
# 2. Verify server-signed license activation token locally
try:
# Read the stored token (from configuration file or env)
with open("license.key", "r") as f:
license_token = f.read().strip()
license_details = sdk.verify_license_signature(license_token)
print("Verification Successful!")
print(f"Licensed Features: {license_details['features']}")
except Exception as e:
print(f"Activation Invalid: {e}")
