/* Copyright 2012 The Chromium Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* From private/ppb_x509_certificate_private.idl, * modified Wed Apr 11 17:11:26 2012. */ #ifndef PPAPI_C_PRIVATE_PPB_X509_CERTIFICATE_PRIVATE_H_ #define PPAPI_C_PRIVATE_PPB_X509_CERTIFICATE_PRIVATE_H_ #include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_instance.h" #include "ppapi/c/pp_macros.h" #include "ppapi/c/pp_resource.h" #include "ppapi/c/pp_stdint.h" #include "ppapi/c/pp_var.h" #define PPB_X509CERTIFICATE_PRIVATE_INTERFACE_0_1 … #define PPB_X509CERTIFICATE_PRIVATE_INTERFACE … /** * @file * This file defines the <code>PPB_X509Certificate_Private</code> interface for * an X509 certificate. */ /** * @addtogroup Enums * @{ */ /** * This enumeration corresponds to fields of an X509 certificate. Refer to * <a href="http://www.ietf.org/rfc/rfc5280.txt>RFC 5280</a> for further * documentation about particular fields. */ PP_X509Certificate_Private_Field; PP_COMPILE_ASSERT_SIZE_IN_BYTES(…); /** * This enumeration defines the different possible values for X5O9 certificate * versions as returned by: * <code>GetField(resource, PP_X509CERTIFICATE_PRIVATE_VERSION)</code>. */ PPB_X509Certificate_Private_Version; PP_COMPILE_ASSERT_SIZE_IN_BYTES(…); /** * @} */ /** * @addtogroup Interfaces * @{ */ /** * The <code>PPB_X509Certificate_Private</code> interface provides access to * the fields of an X509 certificate. */ struct PPB_X509Certificate_Private_0_1 { … }; PPB_X509Certificate_Private; /** * @} */ #endif /* PPAPI_C_PRIVATE_PPB_X509_CERTIFICATE_PRIVATE_H_ */