Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(819)

Unified Diff: ppapi/c/private/ppb_flash_x509_certificate.h

Issue 9693024: Add the PPAPI X509 Certificate interface and implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/c/private/ppb_flash_x509_certificate.h
diff --git a/ppapi/c/private/ppb_flash_x509_certificate.h b/ppapi/c/private/ppb_flash_x509_certificate.h
new file mode 100644
index 0000000000000000000000000000000000000000..01264ccefceeba63d79795a4dade10c92cb04b58
--- /dev/null
+++ b/ppapi/c/private/ppb_flash_x509_certificate.h
@@ -0,0 +1,124 @@
+/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/* From private/ppb_flash_x509_certificate.idl,
+ * modified Thu Mar 15 13:26:44 2012.
+ */
+
+#ifndef PPAPI_C_PRIVATE_PPB_FLASH_X509_CERTIFICATE_H_
+#define PPAPI_C_PRIVATE_PPB_FLASH_X509_CERTIFICATE_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_FLASH_X509CERTIFICATE_INTERFACE_0_1 "PPB_Flash_X509Certificate;0.1"
+#define PPB_FLASH_X509CERTIFICATE_INTERFACE \
+ PPB_FLASH_X509CERTIFICATE_INTERFACE_0_1
+
+/**
+ * @file
+ * This file defines the <code>PPB_Flash_X509Certificate</code> interface for
+ * an X509 certificate.
+ */
+
+
+/**
+ * @addtogroup Enums
+ * @{
+ */
+typedef enum {
+ /* Issuer/principal common name, locality name, state or province name,
+ * country name, organization name and organization unit name are returned as
+ * <code>PP_VARTYPE_STRING</code>. */
+ PP_FLASH_X509CERTIFICATE_ISSUER_COMMON_NAME_ = 0,
+ PP_FLASH_X509CERTIFICATE_ISSUER_LOCALITY_NAME_ = 1,
+ PP_FLASH_X509CERTIFICATE_ISSUER_STATE_OR_PROVINCE_NAME_ = 2,
+ PP_FLASH_X509CERTIFICATE_ISSUER_COUNTRY_NAME_ = 3,
+ PP_FLASH_X509CERTIFICATE_ISSUER_ORGANIZATION_NAME_ = 4,
+ PP_FLASH_X509CERTIFICATE_ISSUER_ORGANIZATION_UNIT_NAME_ = 5,
+ /* The issuer/principal unique ID is returned as a
+ * <code>PP_VARTYPE_ARRAY_BUFFER</code>. */
+ PP_FLASH_X509CERTIFICATE_ISSUER_UNIQUE_ID_ = 6,
+ PP_FLASH_X509CERTIFICATE_PRINCIPAL_COMMON_NAME_ = 7,
+ PP_FLASH_X509CERTIFICATE_PRINCIPAL_LOCALITY_NAME_ = 8,
+ PP_FLASH_X509CERTIFICATE_PRINCIPAL_STATE_OR_PROVINCE_NAME_ = 9,
+ PP_FLASH_X509CERTIFICATE_PRINCIPAL_COUNTRY_NAME_ = 10,
+ PP_FLASH_X509CERTIFICATE_PRINCIPAL_ORGANIZATION_NAME_ = 11,
+ PP_FLASH_X509CERTIFICATE_PRINCIPAL_ORGANIZATION_UNIT_NAME_ = 12,
+ PP_FLASH_X509CERTIFICATE_PRINCIPAL_UNIQUE_ID_ = 13,
+ /* The certificate version is returned as a <code>PP_VARTYPE_INT32</code> with
+ * 0=X509v1, 1=X509v2, 2=X509v3. */
+ PP_FLASH_X509CERTIFICATE_VERSION = 14,
+ /* The certificate serial number is returned as a
+ * <code>PP_VARTYPE_ARRAY_BUFFER</code> with the leading 0 removed. */
+ PP_FLASH_X509CERTIFICATE_SERIAL_NUMBER = 15,
+ /* The algorithm OID is returned as a <code>PP_VARTYPE_STRING</code>. */
+ PP_FLASH_X509CERTIFICATE_ALGORITHM_OID = 16,
+ /* The algorithm paramaters encoded in DER are returned as a
+ * <code>PP_VARTYPE_STRING</code>. */
+ PP_FLASH_X509CERTIFICATE_ALGORITHM_PARAMATERS_RAW = 17,
+ /* The validity not before and not after dates are returned as
+ * <code>PP_TIME</code>. */
+ PP_FLASH_X509CERTIFICATE_VALIDITY_NOT_BEFORE = 18,
+ PP_FLASH_X509CERTIFICATE_VALIDITY_NOT_AFTER = 19,
+ /* The subject public key algorithm OID is returned as a
+ * <code>PP_VARTYPE_STRING</code>. */
+ PP_FLASH_X509CERTIFICATE_SUBJECT_PUBLIC_KEY_ALGORITHM_OID = 19,
+ /* The public key is returned as a <code>PP_VARTYPE_ARRAY_BUFFER</code>. */
+ PP_FLASH_X509CERTIFICATE_SUBJECT_PUBLIC_KEY = 20,
+ /* The raw certificate encoded in DER format is returned as a
+ * <code>PP_VARTYPE_ARRAY_BUFFER</code>. */
+ PP_FLASH_X509CERTIFICATE_RAW = 21
+} PP_Flash_X509Certificate_Field;
+PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Flash_X509Certificate_Field, 4);
+/**
+ * @}
+ */
+
+/**
+ * @addtogroup Interfaces
+ * @{
+ */
+/**
+ * The <code>PPB_Flash_X509Certificate</code> interface provides access to
+ * the fields of an X509 certificate.
+ */
+struct PPB_Flash_X509Certificate_0_1 {
+ /**
+ * Allocates a <code>PPB_Flash_X509Certificate</code> resource.
+ * <code>Init()</code> must be called before using the certificate.
+ */
+ PP_Resource (*Create)(PP_Instance instance);
+ /**
+ * Returns <code>PP_TRUE</code> if a given resource is a
+ * <code>PPB_Flash_X509Certificate</code>.
+ */
+ PP_Bool (*IsFlashX509Certificate)(PP_Resource resource);
+ /**
+ * Initialize a <code>PPB_Flash_X509Certificate</code> from the DER-encoded
+ * representation. |bytes| should represent only a single certificate.
+ * <code>PP_FALSE</code> is returned if |bytes| is not a valid DER-encoding of
+ * a certificate. Note: Flash requires this to be synchronous.
+ */
+ PP_Bool (*Init)(PP_Resource resource, const char* bytes, uint32_t length);
+ /**
+ * Get a field of the X509Certificate as a <code>PP_Var</code>. A null
+ * <code>PP_Var</code> is returned if the field is unavailable.
+ */
+ struct PP_Var (*GetField)(PP_Resource resource,
+ PP_Flash_X509Certificate_Field field);
+};
+
+typedef struct PPB_Flash_X509Certificate_0_1 PPB_Flash_X509Certificate;
+/**
+ * @}
+ */
+
+#endif /* PPAPI_C_PRIVATE_PPB_FLASH_X509_CERTIFICATE_H_ */
+

Powered by Google App Engine
This is Rietveld 408576698