Vendor Exit fails Passphrase in Top Secret
search cancel

Vendor Exit fails Passphrase in Top Secret

book

Article ID: 209761

calendar_today

Updated On:

Products

Top Secret

Issue/Introduction

The following is an Assembler exit supplied by a vendor to call Top Secret to verify login credentials.   The exit works fine with passwords, but not with passphrase.   

VEROPW01 DS    0H                                                
         MODESET MODE=SUP            SWITCH TO SUPERVISOR STATE  
         LA    R3,USERIDLN           POINT TO USERID LENGTH/USERI
         LA    R4,PASSWDLN           POINT TO PASSWORD LENGTH/PAS
         LA    R5,RR1AREA            LOAD ADDRESS OF RACROUTE PLI
         LA    R7,PwdPhrLen            Point R7 to Pswd Phrase in
         LA    R8,NewPhrLen            Point R8 to new Pswd Phras
*****************************************************************
*   CALL TOP SECRET TO VERIFY USERID AND PASSWORD                
*****************************************************************
         RACROUTE REQUEST=VERIFY,USERID=(3),PASSWRD=(4),         
               PHRASE=(7),RELEASE=7730,                          
               ENVIR=CREATE,ACEE=ACEEADDR,SUBPOOL=0,WORKA=SAFWORK
               MF=(E,(5))                                        

 

 

 

Environment

Release : 16.0

Component : CA Top Secret for z/OS

Resolution

VEROPW01 DS    0H                                                
         MODESET MODE=SUP            SWITCH TO SUPERVISOR STATE  
         LA    R3,USERIDLN           POINT TO USERID LENGTH/USERI
         LA    R4,PASSWDLN           POINT TO PASSWORD LENGTH/PAS               <<< - if phrase  - remove this line
         LA    R5,RR1AREA            LOAD ADDRESS OF RACROUTE PLI
         LA    R7,PwdPhrLen            Point R7 to Pswd Phrase in
         LA    R8,NewPhrLen            Point R8 to new Pswd Phras
*****************************************************************
*   CALL TOP SECRET TO VERIFY USERID AND PASSWORD                
*****************************************************************
         RACROUTE REQUEST=VERIFY,USERID=(3),PASSWRD=(4),         remove password 
               PHRASE=(7),RELEASE=7730,NEWPHRASE=(8),                         and add newphrase    
               ENVIR=CREATE,ACEE=ACEEADDR,SUBPOOL=0,WORKA=SAFWORK,  add comma 
               MF=(E,(5))