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

INCRYPQD.m

Go to the documentation of this file.
  1. INCRYPQD ;LD,DGH; 22 Apr 99 19:18; Encryption socket functions
  1. ;;3.01;BHL IHS Interfaces with GIS;;JUL 01, 2001
  1. ;COPYRIGHT 1991-2000 SAIC
  1. ;
  1. Q
  1. ;
  1. ENCRYPT(INARR,INV,DESKEY,INIP,INERR) ;
  1. ;INPUT:
  1. ; INARR = Message array to be encrypted.
  1. ; INV = Array in which the encrypted message will be returned.
  1. ; Pass by reference.
  1. ; DESKEY = DES encryption key. This parameter is only needed
  1. ; for the first string of a message.
  1. ; INIP = Array containing parameter (PBR). Key parameter is:
  1. ; INIP("EOL") = End of line. Pass by reference.
  1. ; INERR = Error message. Pass by reference.
  1. ;
  1. ; OUTPUT:
  1. ; 1 if successful, 0 if error
  1. ;
  1. N STOP,START,END,INBUF,INMAX,INCRYPT,LINE,LINO,INSMIN,INVS,EOL,ENARR
  1. N NEWNODE,ORGNODE,COUNT,ORGLEN,RC
  1. I '$L($G(DESKEY)) S INERR="Missing DES key" Q 0
  1. I $L($G(DESKEY))>8 S INERR="Invalid length of DES key" Q 0
  1. I '$D(INARR) S INERR="No message array to be encrypted" Q 0
  1. S START=1,INMAX=328,INBUF=""
  1. S INVS=$P(^INRHSITE(1,0),U,12)
  1. S EOL=$S($L($G(INIP("EOL"))):$C(INIP("EOL")),1:"")
  1. S RC=$$CRYPON^INCRYPT(DESKEY)
  1. S INSMIN=$S($P($G(^INRHSITE(1,0)),U,14):$P(^(0),U,14),1:2500)
  1. S (STOP,END)=0,LINO=1
  1. S ENARR=INARR,ORGLEN=$L(INARR)
  1. F S ENARR=$Q(@ENARR) Q:'$L(ENARR)!STOP D
  1. .S COUNT=$L(INARR,",")
  1. .;Local array
  1. .I COUNT=1 S NEWNODE=$E($G(ENARR),1,ORGLEN)
  1. .;Global with node and IEN(s)
  1. .I COUNT>1 S NEWNODE=$E($G(ENARR),1,ORGLEN-1)_")" D
  1. .. I $E($G(ENARR),ORGLEN)'["," S STOP=1 Q
  1. .S ORGNODE=$E($G(INARR),1,$L(INARR))
  1. .; Matching the current node with the original node
  1. .I NEWNODE'=ORGNODE S STOP=1 Q
  1. . S LINE=$G(@ENARR)
  1. . I $L(EOL) S LINE=LINE_EOL
  1. . S X=$$PACK(LINE,INMAX,.INBUF)
  1. . Q:'$L(X)
  1. . I '$Q(@ENARR),'$L(INBUF) S END=1
  1. . D ENCRYPT^INCRYPT(X,.INCRYPT,$L(X),START,END) S START=0
  1. . D:'INVS MC^INHS
  1. . S @INV@(LINO)=$G(INCRYPT),LINO=LINO+1
  1. . I $L(INBUF)>INMAX D
  1. .. N LINE1,INCRYPT1
  1. .. S LINE1=INBUF,INBUF=""
  1. .. S X1=$$PACK(LINE1,INMAX,.INBUF)
  1. .. I '$Q(@ENARR),'$L(INBUF) S END=1
  1. .. D ENCRYPT^INCRYPT(X1,.INCRYPT1,$L(X1),START,END)
  1. .. D:'INVS MC^INHS
  1. .. S @INV@(LINO)=$G(INCRYPT1),LINO=LINO+1
  1. S END=1 D
  1. . Q:'$L(INBUF)
  1. . D ENCRYPT^INCRYPT(INBUF,.INCRYPT,$L(INBUF),START,END)
  1. . D:'INVS MC^INHS
  1. . S @INV@(LINO)=$G(INCRYPT)
  1. S RC=$$CRYPOFF^INCRYPT()
  1. Q 1
  1. ;
  1. DECRYPT(DECARR,INV,DESKEY,INERR) ;
  1. ; INPUT:
  1. ; DECARR = Name of the array containing encrypted message strings
  1. ; to be decrypted.
  1. ; INV = Name of the array which the API will use to return the
  1. ; decrypted message string. Pass by reference.
  1. ; If local symbol space is low, the API will return a global array.
  1. ; DESKEY = DES encryption key. This parameter is only needed
  1. ; for the first string to be decrypted.
  1. ; INERR = Error message. Pass by reference.
  1. ;
  1. ; OUTPUT:
  1. ; 1 if successful, 0 if error
  1. ;
  1. N I,DECRYPT,INVS,INSMIN,START,END,LINE,LINO,RC
  1. I '$D(DECARR) S INERR="No message array to be encrypted" Q 0
  1. I '$L($G(DESKEY)) S INERR="Missing DES key" Q 0
  1. I $L($G(DESKEY))>8 S INERR="Invalid length of DES key" Q 0
  1. S INVS=$P(^INRHSITE(1,0),U,12)
  1. S START=1
  1. S RC=$$CRYPON^INCRYPT(DESKEY)
  1. S INSMIN=$S($P($G(^INRHSITE(1,0)),U,14):$P(^(0),U,14),1:2500)
  1. S (I,END)=0,LINO=1
  1. F S I=$O(@DECARR@(I)) Q:'+I D
  1. . S LINE=$G(@DECARR@(I))
  1. . I '$O(@DECARR@(I)) S END=1
  1. . D DECRYPT^INCRYPT(LINE,.DECRYPT,$L(LINE),START,END) S START=0
  1. . D:'INVS MC^INHS
  1. . S @INV@(LINO)=$G(DECRYPT),LINO=LINO+1
  1. S RC=$$CRYPOFF^INCRYPT()
  1. Q 1
  1. ;
  1. PACK(INLIN,INMAX,INBUF) ;pack segments into packets
  1. ;INPUT
  1. ; INLIN = line to pack
  1. ; INMAX = maximum string length
  1. ; INBUF = Overflow buffer (PBR)
  1. ;RETURN
  1. ; Return value will be a string with length of max string if
  1. ; INLIN has been exceeded. Null if it has not.
  1. ; INBUF will have the overflow from max string length. Calling
  1. ; routine should keep returning INBUF without change.
  1. ;
  1. N BL,INLINE,L
  1. S INBUF=$G(INBUF),BL=$L(INBUF)
  1. I BL+$L(INLIN)'>INMAX S INBUF=INBUF_INLIN
  1. E S L=(INMAX-BL),INBUF=INBUF_$E(INLIN,1,L),INLIN=$E(INLIN,L+1,$L(INLIN)) S INLINE=INBUF,INBUF=INLIN
  1. Q $G(INLINE)