/** * @author ETSI / STF481 * @version $URL$ * $Id$ * @desc Module containing functions for Security Protocol * */ module LibItsSecurity_Functions { // Libcommon // import from LibCommon_BasicTypesAndValues all; // import from LibCommon_DataStrings all; // import from LibCommon_VerdictControl {type FncRetCode;} // import from LibCommon_Sync all; // import from LibCommon_Time all; // LibIts // import from LibItsCommon_Functions all; // import from LibItsCommon_TestSystem all; // import from LibItsCommon_TypesAndValues all; import from LibItsGeoNetworking_TypesAndValues all; import from LibItsSecurity_TypesAndValues all; // import from LibItsGeoNetworking_TestSystem all; // import from LibItsGeoNetworking_Templates all; // import from LibItsGeoNetworking_Functions all; group helpersFunctions { /** * @desc Produces a 256-bit (32-byte) hash value * @param TODO * @return TODO */ function f_hashWithSha256(in octetstring p_toBeHashedData) { } /** * @desc Produces a Elliptic Curve Digital Signature Algorithm (ECDSA) signaturee * @param TODO * @return TODO */ function f_signWithEcdsaNistp256WithSha256() { } /** * @desc Verify the signature of the specified data * @param TODO * @return true on success, false otherwise */ function f_verifyWithEcdsaNistp256WithSha256() return boolean { return false; } /** * @desc Produce a new public/private key pair based on Elliptic Curve Digital Signature Algorithm (ECDSA) algorithm * @param TODO * @return true on success, false otherwise */ function f_generateKeyPair() return boolean { return false; } /** * @desc Calculate digest over the certificate * @param cert The certificate * @return the digest */ function f_calculateDigest(in Certificate cert) return HashedId8 { return 0; } group gettersAndSetters { /** * @desc return SecuredMessage field of GeoNetworking packet * @param p_msg GeoNetworking packet * @return the SecuredMessage if any */ function f_getSecuredMessage(in GeoNetworkingPdu p_msg) return SecuredMessage { return p_msg.gnPacket.securedMsg; } /** * @desc return SecuredMessage header field of given tipe or null if none * @param p_msg the SecuredMessage * @param p_type header field type * @return HeaderField of given type if any or null */ function f_getMsgHeaderField(in SecuredMessage p_msg, in HeaderFieldType p_type) return HeaderField { var HeaderField v_return := null; var integer l := lengthof(p_msg.header_fields); var integer i; for(i:=0; i