Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: INCRYPT

INCRYPT.m

Go to the documentation of this file.
  1. INCRYPT ; cmi/flag/maw - DGH 3 May 99 11:09 Interface encryption calls ;
  1. ;;3.01;BHL IHS Interfaces with GIS;**1**;JUN 01, 2002
  1. ;COPYRIGHT 1991-2000 SAIC
  1. ;CHCS TOOLS_450; GEN 18; 26-SEP-1996
  1. ;COPYRIGHT 1991, 1992 SAIC
  1. ;
  1. ;This routine contains the M tags which call out to the
  1. ;encryption functions written in C. The syntax is tested
  1. ;for DSM running on VMS. If platform specific routines are
  1. ;required, a copy of this routine should be placed in
  1. ;INCRYPVX = V
  1. ;INCRYPMS = MSM version
  1. ;etc.
  1. ;
  1. ENCRYPT(XIN,XOUT,LEN,START,END) ;Call to C encryption function
  1. ;INPUT:
  1. ; XIN = String to be encrypted
  1. ; XOUT = PBR variable which the encryption function will return
  1. ; as the encrypted string
  1. ; LEN = $Length of the original string
  1. ; START = 1 if this is the first string of a message to be encrypted.
  1. ; END = 1 if this is the last string of a message to be encrypted.
  1. ;S OLEN=$&DES.OUTCBC(.XIN,.XOUT,LEN,START,END)
  1. Q
  1. ;
  1. DECRYPT(XCRYPT,XDE,LEN,START,END) ;Call to C decryption functions
  1. ;INPUT:
  1. ; XCRYPT = Incoming encrypted string to be decrypted
  1. ; XDE = PBR variable which the decryption function will return as
  1. ; the decrypted string.
  1. ; LEN = $Length of the incoming encrypted string
  1. ; START = 1 if this is the first string of a message to be dencrypted.
  1. ; END = 1 if this is the last string of a message to be dencrypted.
  1. ;S OLEN=$&DES.INCBC(.XCRYPT,.XDE,LEN,START,END)
  1. Q
  1. ;
  1. CRYPON(DESKEY) ;Starts the C encryption/decryption background job
  1. ;Quits with a 1. No current logic for failure
  1. ;S RC=$&DES.SKEY(.DESKEY)
  1. Q 1
  1. ;
  1. CRYPOFF() ;Stops the C encryption/decryption background job
  1. ;Quits with a 1. No current logic for failure
  1. ;S RC=$&DES.DONE()
  1. Q 1
  1. ;