For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Platform docsVideosCommunitySign up
CapabilitiesGetting startedVoice AI OrchestrationVoxEngine PlatformAPI ReferenceFAQ
CapabilitiesGetting startedVoice AI OrchestrationVoxEngine PlatformAPI ReferenceFAQ
      • Overview
        • Modules
        • AppEvents
        • TerminationStatus
          • Overview
  • Management API
    • Reference
    • Authorization
    • Errors
  • Web SDK
    • Overview
  • Android SDK
    • Overview
  • Android SDK v3
    • Overview
  • iOS SDK
    • Overview
  • React Native SDK
    • Overview
  • Flutter SDK
    • Overview
LogoLogo
Platform docsVideosCommunitySign up
On this page
  • Functions
  • hmac_sha256
  • md5
  • sha1
  • sha256
VoxEngineRuntime and modulesCrypto

Crypto

||View as Markdown|
Was this page helpful?
Edit this page
Previous

Logger

Next

Net

Built with

Functions

hmac_sha256

Calculates HMAC-SHA256 hash of the specified data.

1hmac_sha256(key: string, data: string): string

Parameters

key
stringRequired
data
stringRequired

md5

Calculates MD5 hash. Can be used with HTTP requests that require hash.

1md5(data: string | string[]): string

Parameters

data
string | string[]Required

sha1

Calculates SHA1 hash. Can be used with HTTP requests that require hash.

1sha1(data: string): string

Parameters

data
stringRequired

sha256

Calculates SHA256 hash of the specified data.

1sha256(data: string): string

Parameters

data
stringRequired