You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.6 KiB
60 lines
1.6 KiB
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
/***********************************************************************
|
|
* Copyright (c) 2017-2018, Intel Corporation
|
|
*
|
|
* All rights reserved.
|
|
***********************************************************************/
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "tss2_sys.h"
|
|
|
|
#define LOGMODULE test
|
|
#include "util/log.h"
|
|
#include "test.h"
|
|
|
|
/**
|
|
* This program contains integration test for SAPI Tss2_Sys_StirRandom.
|
|
* Since StirRandom is quite simple we can only check for success if we
|
|
* supply correct parameters.
|
|
*/
|
|
int
|
|
test_invoke (TSS2_SYS_CONTEXT *sapi_context)
|
|
{
|
|
TSS2_RC rc;
|
|
TPM2B_SENSITIVE_DATA inData = {
|
|
.size = 20,
|
|
.buffer = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20}
|
|
};
|
|
|
|
LOG_INFO("StirRandom tests started.");
|
|
/* Check invalid context */
|
|
rc = Tss2_Sys_StirRandom(NULL, 0, NULL, 0);
|
|
if (rc != TSS2_SYS_RC_BAD_REFERENCE) {
|
|
LOG_ERROR("StirRandom (ctx) FAILED! Response Code : %x", rc);
|
|
exit(1);
|
|
}
|
|
|
|
/* check empty input data */
|
|
rc = Tss2_Sys_StirRandom(sapi_context, 0, NULL, 0);
|
|
if (rc != TSS2_RC_SUCCESS) {
|
|
LOG_ERROR("StirRandom (empty) FAILED! Response Code : %x", rc);
|
|
exit(1);
|
|
}
|
|
|
|
/* check with correct input data*/
|
|
rc = Tss2_Sys_StirRandom(sapi_context, 0, &inData, 0);
|
|
if (rc != TSS2_RC_SUCCESS) {
|
|
LOG_ERROR("StirRandom (indata) FAILED! Response Code : %x", rc);
|
|
exit(1);
|
|
}
|
|
LOG_INFO("StirRandom Test Passed!");
|
|
return 0;
|
|
}
|