StrongNameSignatureSize

Returns the size of the strong name signature. This method is typically used by compilers to determine how much space to reserve in the file when creating a delay-signed assembly.

Syntax

HRESULT StrongNameSignatureSize(
  BYTE *pbPublicKeyBlob,
  ULONG cbPublicKeyBlob, 
  DWORD *pcbSize
); 

Parameters

  • pbPublicKeyBlob [in]
    A structure of type PublicKeyBlob containing the public portion of the key pair used to generate the strong name signature.
  • cbPublicKeyBlob [in]
    The size in bytes of the structure provided in pbPublicKeyBlob.
  • pcbSize [out]
    The number of bytes required to store the strong name signature.