LibItsSecurity_Pics.ttcn 2.23 KB
Newer Older
 *  @author   ETSI / STF481 / STF507 / STF517 / STF538
 *  @version  $URL$
 *            $Id$
 *  @desc     Module containing Pics for Security Protocol
garciay's avatar
garciay committed
 *  @copyright   ETSI Copyright Notification
 *               No part may be reproduced except as authorized by written permission.
 *               The copyright and the foregoing restriction extend to reproduction in all media.
 *               All rights reserved.
 *
 */
module LibItsSecurity_Pics {
    
    // 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;
        
garciay's avatar
garciay committed
    // LibItsSecurity
    import from LibItsSecurity_TypesAndValues all;
    
    modulepar HashAlgorithm PICS_HASH_ALGORITHM := sha256;
    
    modulepar SignAlgorithm PICS_SIGN_ALGORITHM := e_nistp_256;
    
    /**
     * Is the IUT support Brainpool algorithm
     */
    modulepar boolean PICS_BRAINPOOL_SUPPORT := false;
    
garciay's avatar
garciay committed
    modulepar boolean PICS_SEC_P2P_AT_DISTRIBUTION := false;
    
    /**
     * Is the IUT support certificates pushing
     */
    modulepar boolean PICS_CERTIFICATE_SELECTION := true;
    
    /**
     * Is the IUT support circular region geographical restriction
     */
    modulepar boolean PICS_USE_CIRCULAR_REGION := true;
    
    /**
     * Is the IUT support rectangular region geographical restriction
     */
    modulepar boolean PICS_USE_RECTANGULAR_REGION := true;
    
    /**
     * Is the IUT support polygonal region geographical restriction
     */
    modulepar boolean PICS_USE_POLYGONAL_REGION := true;
    
    /**
     * Is the IUT support identified region geographical restriction
     */
    modulepar boolean PICS_USE_IDENTIFIED_REGION := true;
    
    /**
     * Is the IUT support identified region/UN geographical restriction
     */
    modulepar boolean PICS_USE_UN_STATS_REGION_DICTIONARY := true;
    
    /**
     * Is the IUT support identified region/ISO31661 geographical restriction
     */
    modulepar boolean PICS_USE_ISO31661_REGION_DICTIONARY := true;
    
    /**
     * Does the IUT support ITS-AID for Generic profile?
     */
    modulepar boolean PICS_ITS_AID_OTHER_PROFILE := true;
    
} // End of module LibItsSecurity_Pics