Merge "[Security] Fixed build warnings" into devel_3.0_main
[platform/framework/native/appfw.git] / src / osp-init / Osp.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file        Osp.cpp
19  * @brief       This is the implementation of global OSP initialization.
20  */
21
22 #include <openssl/evp.h> 
23 #include <FOspConfig.h>
24
25 extern "C"
26 {
27 extern void FBase_Initialize(void);
28 extern void FBase_Finalize(void);
29
30
31 __attribute__((constructor))
32 void _OSP_EXPORT_
33 Osp_Initialize(void)
34 {
35         // FBase_Initialize() is moved to FApp_AppInfo.cpp due to the preloading issue.
36         OpenSSL_add_all_algorithms(); 
37 }
38
39 __attribute__((destructor))
40 void _OSP_EXPORT_
41 Osp_Finalize(void)
42 {
43         //FBase_Finalize();
44         EVP_cleanup();
45 }
46
47 }