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

Side by Side Diff: ppapi/api/private/ppb_flash_x509_certificate.idl

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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 /**
7 * This file defines the <code>PPB_Flash_X509Certificate</code> interface for
8 * an X509 certificate.
9 */
10
11 label Chrome {
12 M19 = 0.1
13 };
14
15 // TODO(raymes): Document the types of the return values for each of these
16 // fields as they are implemented.
17 [assert_size(4)]
18 enum PP_Flash_X509Certificate_Field {
19 PP_FLASH_X509CERTIFICATE_ISSUER_COMMON_NAME_= 0,
20 PP_FLASH_X509CERTIFICATE_ISSUER_LOCALITY_NAME_= 1,
21 PP_FLASH_X509CERTIFICATE_ISSUER_STATE_OR_PROVINCE_NAME_= 2,
22 PP_FLASH_X509CERTIFICATE_ISSUER_COUNTRY_NAME_= 3,
23 PP_FLASH_X509CERTIFICATE_ISSUER_ORGANIZATION_NAME_= 4,
24 PP_FLASH_X509CERTIFICATE_ISSUER_ORGANIZATION_UNIT_NAME_ = 5,
Ryan Sleevi 2012/03/15 02:27:56 19 - 24: UTF-8 strings (PP_VARTYPE_STRING ?)
raymes 2012/03/15 20:32:14 Done.
25 PP_FLASH_X509CERTIFICATE_ISSUER_UNIQUE_ID_ = 6,
Ryan Sleevi 2012/03/15 02:27:56 25: A raw byte array (PP_VARTYPE_ARRAY_BUFFER ?)
raymes 2012/03/15 20:32:14 Done.
26
27 PP_FLASH_X509CERTIFICATE_PRINCIPAL_COMMON_NAME_= 7,
28 PP_FLASH_X509CERTIFICATE_PRINCIPAL_LOCALITY_NAME_= 8,
29 PP_FLASH_X509CERTIFICATE_PRINCIPAL_STATE_OR_PROVINCE_NAME_= 9,
30 PP_FLASH_X509CERTIFICATE_PRINCIPAL_COUNTRY_NAME_= 10,
31 PP_FLASH_X509CERTIFICATE_PRINCIPAL_ORGANIZATION_NAME_= 11,
32 PP_FLASH_X509CERTIFICATE_PRINCIPAL_ORGANIZATION_UNIT_NAME_ = 12,
Ryan Sleevi 2012/03/15 02:27:56 27 - 32: UTF-8 strings (PP_VARTYPE_STRING ?)
raymes 2012/03/15 20:32:14 Done.
33 PP_FLASH_X509CERTIFICATE_PRINCIPAL_UNIQUE_ID_ = 13,
Ryan Sleevi 2012/03/15 02:27:56 33: A raw byte array (PP_VARTYPE_ARRAY_BUFFER ?)
raymes 2012/03/15 20:32:14 Done.
34
35 PP_FLASH_X509CERTIFICATE_VERSION = 14,
Ryan Sleevi 2012/03/15 02:27:56 35: Some enum (X509v1, X509v2, X509v3)
raymes 2012/03/15 20:32:14 Done.
36 PP_FLASH_X509CERTIFICATE_SERIAL_NUMBER = 15,
Ryan Sleevi 2012/03/15 02:27:56 36: A raw byte array (PP_VARTYPE_ARRAY_BUFFER ?)
raymes 2012/03/15 20:32:14 Done.
37 PP_FLASH_X509CERTIFICATE_ALGORITHM_OID = 16,
Ryan Sleevi 2012/03/15 02:27:56 37: A string (which will surely cheese someone in
raymes 2012/03/15 20:32:14 Done.
38 PP_FLASH_X509CERTIFICATE_ALGORITHM_PARAMATERS = 17,
Ryan Sleevi 2012/03/15 02:27:56 38: If polymorphic structs are allowed, I'd like t
raymes 2012/03/15 20:32:14 AFAIK they aren't supported but there may be some
39 PP_FLASH_X509CERTIFICATE_VALIDITY_DATE_RANGE = 18,
Ryan Sleevi 2012/03/15 02:27:56 39: This seems like it should be X509CERTIFICATE_V
raymes 2012/03/15 20:32:14 Done.
40 PP_FLASH_X509CERTIFICATE_SUBJECT_PUBLIC_KEY_ALGORITHM_OID = 19,
Ryan Sleevi 2012/03/15 02:27:56 40: A string (same as 37) - PP_VARTYPE_STRING ?
raymes 2012/03/15 20:32:14 Done.
41 PP_FLASH_X509CERTIFICATE_SUBJECT_PUBLIC_KEY = 20,
Ryan Sleevi 2012/03/15 02:27:56 41: A raw byte array - PP_VARTYPE_ARRAY_BUFFER ?
raymes 2012/03/15 20:32:14 Nope =/ On 2012/03/15 02:27:56, Ryan Sleevi wrote:
42 PP_FLASH_X509CERTIFICATE_DER = 21,
Ryan Sleevi 2012/03/15 02:27:56 42: I'm slightly inclined to call this _RAW, simil
raymes 2012/03/15 20:32:14 Done.
43 PP_FLASH_X509CERTIFICATE_FIELD_COUNT = 22
44 };
45
46 /**
47 * The <code>PPB_Flash_X509Certificate</code> interface provides access to
48 * the fields of an X509 certificate.
49 */
50 interface PPB_Flash_X509Certificate {
51 /**
52 * Allocates a <code>PPB_Flash_X509Certificate</code> resource.
53 * <code>Init()</code> must be called before using the certificate.
54 */
55 PP_Resource Create([in] PP_Instance instance);
56
57 /**
58 * Returns <code>PP_TRUE</code> if a given resource is a
59 * <code>PPB_Flash_X509Certificate</code>.
60 */
61 PP_Bool IsFlashX509Certificate([in] PP_Resource resource);
62
63 /**
64 * Initialize a <code>PPB_Flash_X509Certificate</code> from the DER-encoded
65 * representation. |bytes| should represent only a single certificate.
66 * <code>PP_FALSE</code> is returned if |bytes| is not a valid DER-encoding of
67 * a certificate. Note: Flash requires this to be synchronous.
68 */
69 PP_Bool Init([in] PP_Resource resource,
70 [in] str_t bytes,
Ryan Sleevi 2012/03/15 02:27:56 I don't see where str_t is defined in the existing
raymes 2012/03/15 20:32:14 str_t is the idl type for const char*. On 2012/03
71 [in] uint32_t length);
72
73 /**
74 * Get a field of the X509Certificate as a |PP_Var|. A null |PP_Var|
75 * is returned if the field is unavailable.
76 */
77 PP_Var GetField([in] PP_Resource resource,
78 [in] PP_Flash_X509Certificate_Field field);
79 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698