HandleType

Represents the type of handle that is returned. This is the type of INFORMATIONCARD_CRYPTO_HANDLE returned by GetToken, GetCryptoTransform, or GetKeyedHash.

typedef enum _HandleType
{
    Asymmetric = 1,
    Symmetric  = 2,
    Transform  = 3,
    Hash       = 4
} HandleType;

Parameters

Value Description

Asymmetric

An asymmetric handle.

Symmetric

A symmetric handle.

Transform

A transform handle.

Hash

A keyed hash handle.

Requirements

Header: Declared in infocard.h.

See Also

Reference

GetToken
GetCryptoTransform
GetKeyedHash

Copyright © 2007 by Microsoft Corporation. All rights reserved.