Represents the direction of a crypto operation, either encryption or decryption.
typedef enum _Direction
{
DirectionEncrypt = 1,
DirectionDecrypt = 2
} Direction;
Parameters
Value | Description |
---|---|
DirectionEncrypt |
The encrypt operation. |
DirectionDecrypt |
The decrypt operation. |
Send comments about this topic to Microsoft.
© Microsoft Corporation. All rights reserved.