TestCodec_Certificates.ttcn 1.06 KB
Newer Older
garciay's avatar
garciay committed
/*
 * @author
 *     
 * @version
 *     1.0
 * @desc
 *     
 * @remark
 *     
 * @see
 *     
 */ 
module TestCodec_Certificates {
  
  // LibIts
  import from IEEE1609dot2BaseTypes language "ASN.1:1997" all;
  import from IEEE1609dot2 language "ASN.1:1997" all;
  import from EtsiTs103097Module language "ASN.1:1997" all;
  
  // TestCodec
  import from TestCodec_TestAndSystem all;
  
  // LibIts
  import from EtsiTs103097Module language "ASN.1:1997" all;
  
  template (value) EtsiTs103097Certificate m_etsiTs103097Certificate(
                                                                     in template (value) IssuerIdentifier p_issuer,
                                                                     in template (value) ToBeSignedCertificate p_toBeSigned
  ) := {
    version     := 3,
    type_       := explicit,
    issuer      := p_issuer,
    toBeSigned  := p_toBeSigned,
    signature_  := omit
  } // End of template m_etsiTs103097Certificate
  
  testcase tc_Certificate() runs on TCType system TCType {
  }
  
} // End of module TestCodec_Certificates