← All docs

openssl_decrypt() — internals

Compiler internals for openssl_decrypt(): lowering path, type checks, and runtime helpers.

openssl_decrypt() — internals

Where it lives

Lowering notes

  • Uses the runtime_call strategy from the single-source builtin descriptor.
  • Emits the typed EIR target runtime.openssl_decrypt through BuiltinLoweringContext.
  • The backend resolves that typed target through src/codegen/lower_inst/runtime_calls.rs; PHP builtin names do not participate in dispatch.

Semantic descriptor

  • Target strategy: runtime_call
  • Validation: checker_hook
  • Result type source: checked
  • Result ownership: fresh
  • Effects: static (16 declared effects)
  • Requirements: static (1 requirements)
  • Callable policy: static_only
  • Target support: macos-aarch64, ios-arm64, ios-sim-arm64, linux-aarch64, linux-x86_64

EIR and runtime boundary

  • Typed EIR target: runtime.openssl_decrypt
  • Backend boundary: src/codegen/lower_inst/runtime_calls.rs resolves the typed target without PHP-name dispatch.

Signature summary

function openssl_decrypt(string $data, string $cipher_algo, string $passphrase, int $options = 0, string $iv = '', mixed $tag = null, string $aad = ''): mixed

What the type checker enforces

  • Arity: takes 3–7 arguments (4 optional).

Eval interpreter (magician)

Cross-references