Newer
Older
mbed-os / components / TARGET_PSA / services / attestation / COMPONENT_PSA_SRV_IPC / psa_initial_attestation_api.c
@Alexander Zilberkant Alexander Zilberkant on 30 Apr 2019 2 KB Update PSA includes to autogenerated files
/*
* Copyright (c) 2018-2019 ARM Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the License); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#include "psa_initial_attestation_api.h"
#include "psa/crypto.h"
#include "psa/client.h"
#include "attestation.h"
#include <string.h>
#include "psa_manifest/sid.h"

#define MINOR_VER 1

enum psa_attest_err_t
psa_initial_attest_get_token(const uint8_t *challenge_obj,
                             uint32_t       challenge_size,
                             uint8_t       *token,
                             uint32_t      *token_size) {
    psa_status_t err_call;
    psa_handle_t handle = PSA_NULL_HANDLE;

    psa_invec in_vec[1] = { { challenge_obj, challenge_size } };
    psa_outvec out_vec[1] = { { token, *token_size } };

    handle = psa_connect(PSA_ATTEST_GET_TOKEN_ID, MINOR_VER);
    if (handle <= 0)
    {
        return (PSA_ATTEST_ERR_GENERAL);
    }

    err_call = psa_call(handle, in_vec, 1, out_vec, 1);
    psa_close(handle);

    if (err_call < 0)
    {
        err_call = PSA_ATTEST_ERR_GENERAL;
    }

    return ((enum psa_attest_err_t) err_call);
}

enum psa_attest_err_t
psa_initial_attest_get_token_size(uint32_t  challenge_size,
                                  uint32_t *token_size) {
    psa_status_t err_call;
    psa_handle_t handle = PSA_NULL_HANDLE;
    psa_invec in_vec[1] = { { &challenge_size, sizeof(uint32_t) } };
    psa_outvec out_vec[1] = { { token_size, sizeof(uint32_t) } };

    handle = psa_connect(PSA_ATTEST_GET_TOKEN_SIZE_ID, MINOR_VER);
    if (handle <= 0)
    {
        return (PSA_ATTEST_ERR_GENERAL);
    }

    err_call = psa_call(handle, in_vec, 1, out_vec, 1);
    psa_close(handle);

    if (err_call < 0)
    {
        err_call = PSA_ATTEST_ERR_GENERAL;
    }

    return ((enum psa_attest_err_t) err_call);
}