      ******************************************************************
      **                                                              **
      **                  WebSphere MQ for Generic                    **
      **                                                              **
      **  FILE NAME:      CMQSCOV                                     **
      **                                                              **
      **  DESCRIPTION:    MQSCO Structure -- SSL Configuration        **
      **                  Options                                     **
      **                                                              **
      ******************************************************************
      **  <copyright                                                  **
      **  notice="lm-source-program"                                  **
      **  pids="5724-H72,5655-R36,5724-L26,"                          **
      **  years="1993,2012"                                           **
      **  crc="3414896830" >                                          **
      **  Licensed Materials - Property of IBM                        **
      **                                                              **
      **  5724-H72,5655-R36,5724-L26,                                 **
      **                                                              **
      **  (C) Copyright IBM Corp. 1993, 2012 All Rights Reserved.     **
      **                                                              **
      **  US Government Users Restricted Rights - Use, duplication or  **
      **  disclosure restricted by GSA ADP Schedule Contract with     **
      **  IBM Corp.                                                   **
      **  </copyright>                                                **
      ******************************************************************
      **                                                              **
      **  FUNCTION:       This file declares the structure MQSCO,     **
      **                  which is used by the main MQI.              **
      **                                                              **
      **  PROCESSOR:      COBOL                                       **
      **                                                              **
      ******************************************************************

      ******************************************************************
      ** <BEGIN_BUILDINFO>                                            **
      ** Generated on:  5/1/12 1:46 PM                                **
      ** Build Level:   ${level}                                      **
      ** Build Type:    Development                                   **
      ** Pointer Size:  64 Bit                                        **
      ** Source File:                                                 **
      ** CMQSCOV                                                      **
      ** <END_BUILDINFO>                                              **
      ******************************************************************

      ** MQSCO structure
       10  MQSCO.
      ** Structure identifier
       15  MQSCO-STRUCID PIC X(4) VALUE 'SCO '.
      ** Structure version number
       15  MQSCO-VERSION PIC S9(9) BINARY VALUE 1.
      ** Location of SSL key repository
       15  MQSCO-KEYREPOSITORY PIC X(256) VALUE SPACES.
      ** Cryptographic hardware configuration string
       15  MQSCO-CRYPTOHARDWARE PIC X(256) VALUE SPACES.
      ** Number of MQAIR records present
       15  MQSCO-AUTHINFORECCOUNT PIC S9(9) BINARY VALUE 0.
      ** Offset of first MQAIR record from start of MQSCO structure
       15  MQSCO-AUTHINFORECOFFSET PIC S9(9) BINARY VALUE 0.
      ** Address of first MQAIR record
       15  MQSCO-AUTHINFORECPTR POINTER VALUE NULL.
      ** Ver:1 **
      ** Number of unencrypted bytes sent/received before secret key is
      ** reset
       15  MQSCO-KEYRESETCOUNT PIC S9(9) BINARY VALUE 0.
      ** Using FIPS-certified algorithms
       15  MQSCO-FIPSREQUIRED PIC S9(9) BINARY VALUE 0.
      ** Ver:2 **
      ** Use only Suite B cryptographic algorithms
       15  MQSCO-ENCRYPTIONPOLICYSUITEBX.
        20  FILLER PIC S9(9) BINARY VALUE 1.
        20  FILLER PIC S9(9) BINARY OCCURS 3 VALUE 0.
       15  FILLER REDEFINES MQSCO-ENCRYPTIONPOLICYSUITEBX.
        20 MQSCO-ENCRYPTIONPOLICYSUITEB PIC S9(9) BINARY OCCURS 4.
      ** Ver:3 **
      ** Certificate validation policy
       15  MQSCO-CERTIFICATEVALPOLICY PIC S9(9) BINARY VALUE 0.
      ** Ver:4 **
      ** Add padding to ensure that the structure ends on the correct
      ** boundary
       15  fILLER  PIC S9(9) BINARY VALUE 0.


      ******************************************************************
      **  End of CMQSCOV                                              **
      ******************************************************************
