CERT_DSS_PARAMETERS
The CERT_DSS_PARAMETERS structure encoded parameters associated with a DSS public key algorithm.
typedef struct _CERT_DSS_PARAMETERS {
CRYPT_UINT_BLOB p;
CRYPT_UINT_BLOB q;
CRYPT_UINT_BLOB g;
} CERT_DSS_PARAMETERS, *PCERT_DSS_PARAMETERS;
Members
-
p
-
The prime modulus P. Must always have the most significant bit of the most significant byte set to 1.
-
q
-
The prime Q. It is 20 bytes in length. The Most significant bit of the most significant byte must be set to 1.
-
g
-
The generator G. Must be the same length as p (must be padded with 0x00 bytes if it is less).
See Also
The DSS Provider Private-Key Blob