Class RTCDtlsFingerprint
Represents a fingerprint of a certificate used to authenticate WebRTC communications.
Inherited Members
Namespace: SipLib.Dtls
Assembly: SipLib.dll
Syntax
public class RTCDtlsFingerprint
Fields
| Edit this page View Sourcealgorithm
One of the hash function algorithms defined in the 'Hash function Textual Names' registry.
Declaration
public string? algorithm
Field Value
Type | Description |
---|---|
string |
value
The value of the certificate fingerprint in lower-case hex string as expressed utilising the syntax of 'fingerprint' in [RFC4572] Section 5.
Declaration
public string? value
Field Value
Type | Description |
---|---|
string |
Methods
| Edit this page View SourceToString()
Converts this object to a string that can be used for the value of the SDP fingerprint attribute
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |
Overrides
| Edit this page View SourceTryParse(string, out RTCDtlsFingerprint?)
Attempts to parse the fingerprint fields from a string.
Declaration
public static bool TryParse(string str, out RTCDtlsFingerprint? fingerprint)
Parameters
Type | Name | Description |
---|---|---|
string | str | The string to parse from. |
RTCDtlsFingerprint | fingerprint | If successful a fingerprint object. |
Returns
Type | Description |
---|---|
bool | True if a fingerprint was successfully parsed. False if not. |