As an experiment in agentic coding in ObjectScript I'm using VS Code to try and create an implementation of an SFTP server.
SFTP is built on top of SSH, so the first phase involves implementing an SSH server. While working on the KEX part of that the agent (using GPT-5.3-Codex) reported:
- IRIS has what we already need for signing and hashing: RSASHASign, RSASHAVerify, RSAGetLastError, SHAHash, SHA1Hash, SHA3Hash.
- It does not list a Diffie-Hellman key exchange or modular exponentiation API in %SYSTEM.Encryption.
It then offered these options:
- Keep using IRIS APIs for cert/key/sign/hash.




