| RSA BSAFE Cert-C |
Certificate Components for C |
| Crypto-C 6.2.1 Developer's Guide | ||
| Search |
The subordinate KEY_TRANSPORT_INFO structure is used to determine or obtain the key used to encrypt an internal content encryption key.
PKI_RECIPIENT structure uses this structure to hold information about a single recipient of a PKI message. PKI_RECIPIENT structure is deprecated in Cert-C 2.0. Use the PKI_RECIPIENT_INFO structure (and the related C_SetPKIMsgRecipient() and C_GetPKIMsgRecipient() functions) instead. cms.c, datamsg.c, and p7stream.c.
#include <cms.h>
typedef struct {
int type;
union {
KEY_TRANSPORT_INFO keyTrans;
} info;
} RECIPIENT_INFO;
Data Fields | |
| int | type |
An int value that identifies the type of data structure in the info union. More... | |
| union RECIPIENT_INFO::@9 | info |
A union that contains recipient information in the format specified by type. More... | |
|
|
A union that contains recipient information in the format specified by |
|
|
An
|