DSSSEED structure (wincrypt.h)

The DSSSEED structure holds the seed and counter values that can be used to verify the primes of the DSS public key.

Syntax

typedef struct _DSSSEED {
  DWORD counter;
  BYTE  seed[20];
} DSSSEED;

Members

counter

A DWORD containing the counter value. If the counter value is 0xFFFFFFFF, the seed and counter values are not available.

seed[20]

A BYTE string containing the seed value.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header wincrypt.h

See also

DSSPUBKEY

PUBLICKEYSTRUC

RSAPUBKEY