2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
8 // http://www.apache.org/licenses/LICENSE-2.0
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.
18 * @file FSecCertX509CertificatePath.h
19 * @brief This is the header file for the %X509CertificatePath class.
21 * This header file contains the declarations of the %X509CertificatePath class.
23 #ifndef _FSEC_CERT_X509_CERTIFICATE_PATH_H_
24 #define _FSEC_CERT_X509_CERTIFICATE_PATH_H_
26 #include <FBaseObject.h>
27 #include <FSecCertICertificatePath.h>
28 #include <FSecCertX509Certificate.h>
31 namespace Tizen { namespace Security { namespace Cert
34 class _CertMgrSvcProxy;
37 * @class X509CertificatePath
38 * @brief This class provides the certificate path.
42 * The %X509CertificatePath class provides the certificate path. @n
44 * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/security/certificate_namespace.htm">Certificates</a>.
46 class _OSP_EXPORT_ X509CertificatePath
47 : public virtual ICertificatePath
48 , public Tizen::Base::Object
53 * This is the default constructor for this class.
57 X509CertificatePath(void);
60 * This is the destructor for this class.
64 virtual ~X509CertificatePath(void);
67 * Gets the format name for the certificate path.
71 * @return The format of the certificate
73 virtual Tizen::Base::String GetFormat(void) const;
76 * Adds a certificate to the certificate chain.
80 * @return An error code
81 * @param[in] certificate A reference to a certificate
82 * @exception E_SUCCESS The method is successful.
83 * @exception E_INVALID_ARG The specified @c certificate or the certificate data is invalid.
84 * @exception E_OUT_OF_MEMORY The memory is insufficient.
85 * @exception E_SYSTEM A system error has occurred. @n
86 * The certificate link list operation has failed.
88 virtual result AddCertificate(const Tizen::Security::Cert::ICertificate& certificate);
91 * Validates the specified certificate path.
95 * @return The result of the certificate path validation
96 * @exception E_SUCCESS The method is successful.
97 * @exception E_SYSTEM A system error has occurred.
98 * The certificate link list operation has failed.
99 * @remarks The specific error code can be accessed using the GetLastResult() method.
101 virtual Tizen::Security::Cert::ValidationResult Validate(void);
104 * Validates the specified certificate path.
108 * @return The result of the certificate path validation
109 * @param[in] trustAnchor The most trusted Certificate Authority (CA)
110 * @exception E_SUCCESS The method is successful.
111 * @exception E_OUT_OF_MEMORY The memory is insufficient.
112 * @exception E_INVALID_ARG The specified input parameter is invalid.
113 * @exception E_SYSTEM A system error has occurred. @n
114 * The certificate link list operation has failed.
115 * @remarks The specific error code can be accessed using the GetLastResult() method.
117 virtual Tizen::Security::Cert::ValidationResult Validate(const Tizen::Security::Cert::ICertificate& trustAnchor);
120 * Gets the length of the certificate path.
124 * @return The length of the certificate path, @n
125 * else @c -1 if an error occurs
126 * @exception E_SUCCESS The method is successful.
127 * @exception E_SYSTEM A system error has occurred. @n
128 * The certificate link list operation has failed.
130 virtual int GetLength(void) const;
133 * Gets the list of the certificates in this certificate path.
137 * @return A pointer to the ICertificate interface, @n
138 * else @c null if an error occurs
139 * @param[in] nth The nth certificate in the certificate path (starts from @c 0)
140 * @exception E_SUCCESS The method is successful.
141 * @exception E_OUT_OF_MEMORY The memory is insufficient.
142 * @exception E_INVALID_ARG The value of the specified @c nth is out of the valid range. @n
143 * It must be less than GetLength().
144 * @exception E_OBJ_NOT_FOUND The certificate is not found.
145 * @exception E_SYSTEM A system error has occurred. @n
146 * The certificate link list operation has failed.
147 * @remarks The specific error code can be accessed using the GetLastResult() method.
149 virtual Tizen::Security::Cert::ICertificate* GetCertificateN(int nth) const;
152 * Gets the trust anchor for the certificate path.
156 * @return The root certificate, @n
157 * else @c null if an error occurs
158 * @exception E_SUCCESS The method is successful.
159 * @exception E_OUT_OF_MEMORY The memory is insufficient.
160 * @exception E_OBJ_NOT_FOUND The certificate is not found.
161 * @exception E_SYSTEM A system error has occurred. @n
162 * The certificate link list operation or
163 * the Tizen::Base::ByteBuffer operation has failed.
164 * @remarks The specific error code can be accessed using the GetLastResult() method.
166 virtual Tizen::Security::Cert::ICertificate* GetTrustAnchorN(void) const;
169 X509CertificatePath(const X509CertificatePath& rhs);
170 X509CertificatePath& operator =(const X509CertificatePath& rhs);
175 int __trustAnchorIndex;
177 class _X509CertificatePathImpl* __pX509CertificatePathImpl;
178 friend class _X509CertificatePathImpl;
180 }; //X509CertificatePath
182 } } } //Tizen::Security::Cert
184 #endif //_FSEC_CERT_X509_CERTIFICATE_PATH_H_