Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
HmacSha.cs
1namespace Waher.Security.JWS
2{
6 public abstract class HmacSha : JwsAlgorithm
7 {
11 public override bool HasPublicWebKey
12 {
13 get { return false; }
14 }
15 }
16}
Abstract base class for HMAC SHA JWS algorithms.
Definition: HmacSha.cs:7
override bool HasPublicWebKey
If the algorithm has a public key.
Definition: HmacSha.cs:12
Abstract base class for JWS algorithm.
Definition: JwsAlgorithm.cs:15