91372a3faba4aabba6d72713fca2f7c9314953fd
[platform/core/security/cert-svc.git] / vcore / src / vcore / CertStoreType.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
18  * @file        CertStoreType.cpp
19  * @version     1.0
20  * @brief       Identification of certificate domain. Certificate domains
21  *              were defined in WAC 1.0 documentation. This is a part
22  *              should be implemented in wrt-installer.
23  */
24 #include <vcore/CertStoreType.h>
25
26 #include <string.h>
27
28 namespace ValidationCore {
29 namespace CertStoreId {
30
31 Set::Set()
32   : m_certificateStorage(0)
33 {}
34
35 Set::~Set()
36 {
37 }
38
39 void Set::add(Type second)
40 {
41     m_certificateStorage |= second;
42 }
43
44
45 bool Set::contains(Type second) const
46 {
47     return static_cast<bool>(m_certificateStorage & second);
48 }
49
50 bool Set::isEmpty() const
51 {
52     return m_certificateStorage == 0;
53 }
54
55 } // namespace CertStoreId
56 } // namespace ValidationCore