Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RsaSha384.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Security.Cryptography;
5
7{
11 public class RsaSha384 : Rsa
12 {
17 public RsaSha384(RSA RSA)
18 : base(RSA)
19 {
20 }
21
25 public override string HashAlgorithmOID => "1.2.840.113549.1.1.12";
26
31
32 }
33}
Base class for RSA algorithms
Definition: Rsa.cs:12
RSA with SHA-384 signatures
Definition: RsaSha384.cs:12
RsaSha384(RSA RSA)
RSA with SHA-384 signatures
Definition: RsaSha384.cs:17
override HashAlgorithmName HashAlgorithmName
Name of hash algorithm to use for signatues.
Definition: RsaSha384.cs:30
override string HashAlgorithmOID
Object Identity for the Hash algorithm.
Definition: RsaSha384.cs:25