Click or drag to resize
weroSoft AG, Software
Certificate Constructor (String)
The documentation is integral part of the weroSoft product documentation. This part is intended to be used by developers only.
Creates a certificate from a base 64 coded string.

Namespace:  WeroSoft.Security
Assembly:  WeroSoft.Core.Library (in WeroSoft.Core.Library.dll) Version: 3.0 Pre-Release
Syntax
C#
public Certificate(
	string certificateString
)

Parameters

certificateString
Type: SystemString
The certificate data string representation.
Remarks
After using this constructor the certificate is initialized and common functionality of the certificate handling can be performed directly. /// The certificate data. The string may be one of the following formats:
  • A byte string like "45 3 145 22 45 ..."
  • A base 64 coded byte array.
  • A PEM content string.
  • A PEM content which is base 64 encoded.
See Also