|
Declaration
[C#]
TSBKeyUsage KeyUsage;
TSBKeyUsage = SmallInt
kuDigitalSignature = SmallInt(1);
kuNonRepudiation = SmallInt(2);
kuKeyEncipherment = SmallInt(4);
kuDataEncipherment = SmallInt(8);
kuKeyAgreement = SmallInt(16);
kuKeyCertSign = SmallInt(32);
kuCRLSign = SmallInt(64);
kuEncipherOnly = SmallInt(128);
kuDecipherOnly = SmallInt(256);
[VB.NET]
Property KeyUsage As TSBKeyUsage
TSBKeyUsage As SmallInt
Const kuDigitalSignature As SmallInt = 1
Const kuNonRepudiation As SmallInt = 2
Const kuKeyEncipherment As SmallInt = 4
Const kuDataEncipherment As SmallInt = 8
Const kuKeyAgreement As SmallInt = 16
Const kuKeyCertSign As SmallInt = 32
Const kuCRLSign As SmallInt = 64
Const kuEncipherOnly As SmallInt = 128
Const kuDecipherOnly As SmallInt = 256
[DLL]
not implemented;
|