/* Copyright 2013 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_platform_verification_private.idl, * modified Fri Oct 18 15:02:09 2013. */ #ifndef PPAPI_C_PRIVATE_PPB_PLATFORM_VERIFICATION_PRIVATE_H_ #define PPAPI_C_PRIVATE_PPB_PLATFORM_VERIFICATION_PRIVATE_H_ #include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_completion_callback.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_PLATFORMVERIFICATION_PRIVATE_INTERFACE_0_2 \ "PPB_PlatformVerification_Private;0.2" #define PPB_PLATFORMVERIFICATION_PRIVATE_INTERFACE \ PPB_PLATFORMVERIFICATION_PRIVATE_INTERFACE_0_2 /** * @file * This file defines the API for platform verification. Currently, it only * supports Chrome OS. */ /** * @addtogroup Interfaces * @{ */ /** * The PPB_PlatformVerification_Private interface allows authorized * services to verify that the underlying platform is trusted. An example of a * trusted platform is a Chrome OS device in verified boot mode. */ struct PPB_PlatformVerification_Private_0_2 { /** * Create() creates a PPB_PlatformVerification_Private object. * * @pram[in] instance A PP_Instance identifying one instance of * a module. * * @return A PP_Resource corresponding to a * PPB_PlatformVerification_Private if successful, 0 if creation * failed. */ PP_Resource (*Create)(PP_Instance instance); /** * IsPlatformVerification() determines if the provided resource is a * PPB_PlatformVerification_Private. * * @param[in] resource A PP_Resource corresponding to a * PPB_PlatformVerification_Private. * * @return PP_TRUE if the resource is a * PPB_PlatformVerification_Private, PP_FALSE if the * resource is invalid or some type other than * PPB_PlatformVerification_Private. */ PP_Bool (*IsPlatformVerification)(PP_Resource resource); /** * Requests a platform challenge for a given service id. * * @param[in] service_id A PP_Var of type * PP_VARTYPE_STRING containing the service_id for the challenge. * * @param[in] challenge A PP_Var of type * PP_VARTYPE_ARRAY_BUFFER that contains the challenge data. * * @param[out] signed_data A PP_Var of type * PP_VARTYPE_ARRAY_BUFFER that contains the data signed by the * platform. * * @param[out] signed_data_signature A PP_Var of type * PP_VARTYPE_ARRAY_BUFFER that contains the signature of the * signed data block. * * @param[out] platform_key_certificate A PP_Var of type * PP_VARTYPE_STRING that contains the device specific * certificate for the requested service_id. * * @param[in] callback A PP_CompletionCallback to be called after * the platform challenge has been completed. This callback will only run if * the return code is PP_OK_COMPLETIONPENDING. * * @return An int32_t containing an error code from pp_errors.h. */ int32_t (*ChallengePlatform)(PP_Resource instance, struct PP_Var service_id, struct PP_Var challenge, struct PP_Var* signed_data, struct PP_Var* signed_data_signature, struct PP_Var* platform_key_certificate, struct PP_CompletionCallback callback); }; typedef struct PPB_PlatformVerification_Private_0_2 PPB_PlatformVerification_Private; /** * @} */ #endif /* PPAPI_C_PRIVATE_PPB_PLATFORM_VERIFICATION_PRIVATE_H_ */