PkcsSignerInfoBuilderAddAuthenticatedAttribute Method |
Adds authenticated attribute. Authenticated attribute will be protected from tampering by digitally signing its contents.
Namespace:
SysadminsLV.PKI.Cryptography.Pkcs
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public void AddAuthenticatedAttribute(
X509Attribute attribute
)
Public Sub AddAuthenticatedAttribute (
attribute As X509Attribute
)
public:
void AddAuthenticatedAttribute(
X509Attribute^ attribute
)
member AddAuthenticatedAttribute :
attribute : X509Attribute -> unit
Parameters
- attribute
- Type: System.Security.CryptographyX509Attribute
An attribute that must be protected by digital signature.
Remarks
If same attribute (with same object identifier) is already presented in collection, it will be overwritten with attribute in the
attribute parameter.
See Also