BCRYPT_DH_KEY_BLOB結構 (bcrypt.h)
BCRYPT_DH_KEY_BLOB 結構會作為 Diffie-Hellman 公鑰 或 私鑰的標頭,BLOB 記憶體中。
語法
typedef struct _BCRYPT_DH_KEY_BLOB {
ULONG dwMagic;
ULONG cbKey;
} BCRYPT_DH_KEY_BLOB, *PBCRYPT_DH_KEY_BLOB;
成員
dwMagic
決定這個結構所代表的索引鍵類型。 這可以是下列其中一個值。
價值 | 意義 |
---|---|
|
結構代表 Diffie-Hellman 公鑰。 |
|
結構代表 Diffie-Hellman 私鑰。 |
cbKey
索引鍵的長度,以位元組為單位。
言論
這個結構會做為較大緩衝區的標頭。 Diffie-Hellman 公鑰 BLOB (BCRYPT_DH_PUBLIC_BLOB) 在連續記憶體中具有下列格式。 模數、產生器及公用數位格式為大端格式。
BCRYPT_DH_KEY_BLOB
Modulus[cbKey] // Big-endian.
Generator[cbKey] // Big-endian.
Public[cbKey] // Big-endian.
Diffie-Hellman 私鑰 BLOB (BCRYPT_DH_PRIVATE_BLOB) 在連續記憶體中具有下列格式。 模數、產生器、公用和 PrivateExponent 數位的格式為 big-endian。
BCRYPT_DH_KEY_BLOB
Modulus[cbKey] // Big-endian.
Generator[cbKey] // Big-endian.
Public[cbKey] // Big-endian.
PrivateExponent[cbKey] // Big-endian.
要求
要求 | 價值 |
---|---|
最低支援的用戶端 | Windows Vista [僅限傳統型應用程式] |
支援的最低伺服器 | Windows Server 2008 [僅限傳統型應用程式] |
標頭 | bcrypt.h |