Cureatr can accept encrypted HL7 ADT batch files uploaded via sftp to our dropbox server. Cureatr has two dropbox servers, playdrop.play.aws.cureatr.com
is our internal staging (play) environment and dropbox.live.aws.cureatr.com
is our production (live) environment.
Cureatr will need an ssh public key file for each of these environments to provision sftp accounts for an institution, and will provide the sftp login username to the institution.
Each HL7 file should contain one or more ADT message separated by newline \n
and with each segment within the message separated by carriage return \r
. The file should be encrypted and BASE64 encoded using OpenSSL:
openssl enc -aes-256-cbc -a -in <hl7-file> -out <hl7-file-enc>