Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tspi_tpm_getrandom(3) [debian man page]

Tspi_TPM_GetRandom(3)					     Library Functions Manual					     Tspi_TPM_GetRandom(3)

						     TCG Software Stack Developer's Reference

NAME
Tspi_TPM_GetRandom - generate a random number on the TPM SYNOPSIS
#include <tss/platform.h> #include <tss/tcpa_defines.h> #include <tss/tcpa_typedef.h> #include <tss/tcpa_struct.h> #include <tss/tss_typedef.h> #include <tss/tss_structs.h> #include <tss/tspi.h> TSS_RESULT Tspi_TPM_GetRandom(TSS_HTPM hTPM, UINT32 size, BYTE** random); DESCRIPTION
Tspi_TPM_GetRandom gets a good random number for the purpose of generating symmetric keys, nonces, or seeding a random number generator. PARAMETERS
hTPM The hTPM parameter is used to specify the handle of the TPM object. The command to get the TPM to test itself will be sent here. size The size parameter is the number of random bytes requested. random The random parameter is a pointer to memory containing the random data. This is where the generated number goes. Because this internally allocates memory, Tspi_Context_FreeMemory should also be used. RETURN CODES
Tspi_TPM_GetRandom returns TSS_SUCCESS on success, otherwise one of the following values is returned: TSS_E_INVALID_HANDLE hTPM is not a valid handle. TSS_E_INTERNAL_ERROR An internal SW error has been detected. TSS_E_BAD_PARAMETER One or more parameters is bad. CONFORMING TO
Tspi_TPM_GetRandom conforms to the Trusted Computing Group Software Specification version 1.1 Golden SEE ALSO
Tspi_Context_FreeMemory(3). TSS 1.1 2004-05-25 Tspi_TPM_GetRandom(3)

Check Out this Related Man Page

Tspi_TPM_SelfTestFull(3)				     Library Functions Manual					  Tspi_TPM_SelfTestFull(3)

						     TCG Software Stack Developer's Reference

NAME
Tspi_TPM_SelfTestFull - perform a self-test of each internal TPM function SYNOPSIS
#include <tss/platform.h> #include <tss/tcpa_defines.h> #include <tss/tcpa_typedef.h> #include <tss/tcpa_struct.h> #include <tss/tss_typedef.h> #include <tss/tss_structs.h> #include <tss/tspi.h> TSS_RESULT Tspi_TPM_SelfTestFull(TSS_HTPM hTPM); DESCRIPTION
Tspi_TPM_SelfTestFull assures that the TPM is functioning as designed. For FIPS certification, crypto modules are required to test them- selves before they are used, and this command is used to fulfill that requirement. This command can also be used to check the TPM whenever such a check is desired. This command is not currently implemented. PARAMETERS
hTPM The hTPM parameter is used to specify the handle of the TPM object on which the self-tests will be run. RETURN CODES
Tspi_TPM_GetStatus returns TSS_SUCCESS on success, otherwise one of the following values is returned: TSS_E_INVALID_HANDLE hTPM is not a valid handle. TSS_E_INTERNAL_ERROR An internal SW error has been detected. CONFORMING TO
Tspi_TPM_SelfTestFull conforms to the Trusted Computing Group Software Specification version 1.1 Golden SEE ALSO
Tspi_TPM_CertifySelfTest(3), Tspi_TPM_GetTestResults(3). TSS 1.1 2004-05-25 Tspi_TPM_SelfTestFull(3)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

generate random number in perl

Could any one tell how can I generate random number from (0, 100..200) in perl? Thanks! (2 Replies)
Discussion started by: zx1106
2 Replies

2. Programming

generating 16 digit random number in C

Hi, How can we generate 16 digit random nos in C. (10 Replies)
Discussion started by: ajaysahoo
10 Replies

3. Programming

C Help; generating a random number.

Im new to C, and Im having a hard time getting a random number. In bash, I would do something similar to the following to get a random number; #!/bin/bash seed1=$RANDOM seed2=$RANDOM seed3=$RANDOM SEED=`expr $seed1 * $seed2 / $seed3` echo ${SEED%.*} Now, in online examples... (4 Replies)
Discussion started by: trey85stang
4 Replies

4. Shell Programming and Scripting

Pick random file from ls command.

Lets say I want to pick a random file when I do an "ls" command. I don't have set number of files in each directory. ls | head -1 This gives me the first one in each directory, is there a way to do the same but pick a random one. (3 Replies)
Discussion started by: elbombillo
3 Replies

5. UNIX for Dummies Questions & Answers

Generating 512MB file with dd using random data

Hello. Could anyone help me with my little annoying problem? I have to generate a 512 MB file made up with random data using DD. After some internet digging I found out that the command is: dd if=/dev/urandom of=/exemple/file bs=512MB After running this command the... (2 Replies)
Discussion started by: razolo13
2 Replies