| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- using System;
- using Renci.SshNet.Common;
- using Renci.SshNet.Security.Cryptography;
- namespace Renci.SshNet.Security
- {
- /// <summary>
- /// Contains RSA private and public key
- /// </summary>
- public class RsaKey : Key, IDisposable
- {
- private bool _isDisposed;
- /// <summary>
- /// Gets the Key String.
- /// </summary>
- public override string ToString()
- {
- return "ssh-rsa";
- }
- /// <summary>
- /// Gets the modulus.
- /// </summary>
- public BigInteger Modulus
- {
- get
- {
- return _privateKey[0];
- }
- }
- /// <summary>
- /// Gets the exponent.
- /// </summary>
- public BigInteger Exponent
- {
- get
- {
- return _privateKey[1];
- }
- }
- /// <summary>
- /// Gets the D.
- /// </summary>
- public BigInteger D
- {
- get
- {
- if (_privateKey.Length > 2)
- {
- return _privateKey[2];
- }
- return BigInteger.Zero;
- }
- }
- /// <summary>
- /// Gets the P.
- /// </summary>
- public BigInteger P
- {
- get
- {
- if (_privateKey.Length > 3)
- {
- return _privateKey[3];
- }
- return BigInteger.Zero;
- }
- }
- /// <summary>
- /// Gets the Q.
- /// </summary>
- public BigInteger Q
- {
- get
- {
- if (_privateKey.Length > 4)
- {
- return _privateKey[4];
- }
- return BigInteger.Zero;
- }
- }
- /// <summary>
- /// Gets the DP.
- /// </summary>
- public BigInteger DP
- {
- get
- {
- if (_privateKey.Length > 5)
- {
- return _privateKey[5];
- }
- return BigInteger.Zero;
- }
- }
- /// <summary>
- /// Gets the DQ.
- /// </summary>
- public BigInteger DQ
- {
- get
- {
- if (_privateKey.Length > 6)
- {
- return _privateKey[6];
- }
- return BigInteger.Zero;
- }
- }
- /// <summary>
- /// Gets the inverse Q.
- /// </summary>
- public BigInteger InverseQ
- {
- get
- {
- if (_privateKey.Length > 7)
- {
- return _privateKey[7];
- }
- return BigInteger.Zero;
- }
- }
- /// <summary>
- /// Gets the length of the key.
- /// </summary>
- /// <value>
- /// The length of the key.
- /// </value>
- public override int KeyLength
- {
- get
- {
- return Modulus.BitLength;
- }
- }
- private RsaDigitalSignature _digitalSignature;
- /// <summary>
- /// <inheritdoc cref="Key.DigitalSignature"/>
- /// </summary>
- /// <returns>
- /// An implementation of an RSA digital signature using the SHA-1 hash algorithm.
- /// </returns>
- protected internal override DigitalSignature DigitalSignature
- {
- get
- {
- _digitalSignature ??= new RsaDigitalSignature(this);
- return _digitalSignature;
- }
- }
- /// <summary>
- /// Gets or sets the public.
- /// </summary>
- /// <value>
- /// The public.
- /// </value>
- public override BigInteger[] Public
- {
- get
- {
- return new[] { Exponent, Modulus };
- }
- set
- {
- if (value.Length != 2)
- {
- throw new InvalidOperationException("Invalid private key.");
- }
- _privateKey = new[] { value[1], value[0] };
- }
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="RsaKey"/> class.
- /// </summary>
- public RsaKey()
- {
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="RsaKey"/> class.
- /// </summary>
- /// <param name="data">DER encoded private key data.</param>
- public RsaKey(byte[] data)
- : base(data)
- {
- if (_privateKey.Length != 8)
- {
- throw new InvalidOperationException("Invalid private key.");
- }
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="RsaKey"/> class.
- /// </summary>
- /// <param name="modulus">The modulus.</param>
- /// <param name="exponent">The exponent.</param>
- /// <param name="d">The d.</param>
- /// <param name="p">The p.</param>
- /// <param name="q">The q.</param>
- /// <param name="inverseQ">The inverse Q.</param>
- public RsaKey(BigInteger modulus, BigInteger exponent, BigInteger d, BigInteger p, BigInteger q, BigInteger inverseQ)
- {
- _privateKey = new BigInteger[8]
- {
- modulus,
- exponent,
- d,
- p,
- q,
- PrimeExponent(d, p),
- PrimeExponent(d, q),
- inverseQ
- };
- }
- private static BigInteger PrimeExponent(BigInteger privateExponent, BigInteger prime)
- {
- var pe = prime - new BigInteger(1);
- return privateExponent % pe;
- }
- /// <summary>
- /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
- /// </summary>
- public void Dispose()
- {
- Dispose(disposing: true);
- GC.SuppressFinalize(this);
- }
- /// <summary>
- /// Releases unmanaged and - optionally - managed resources
- /// </summary>
- /// <param name="disposing"><see langword="true"/> to release both managed and unmanaged resources; <see langword="false"/> to release only unmanaged resources.</param>
- protected virtual void Dispose(bool disposing)
- {
- if (_isDisposed)
- {
- return;
- }
- if (disposing)
- {
- var digitalSignature = _digitalSignature;
- if (digitalSignature != null)
- {
- digitalSignature.Dispose();
- _digitalSignature = null;
- }
- _isDisposed = true;
- }
- }
- /// <summary>
- /// Releases unmanaged resources and performs other cleanup operations before the
- /// <see cref="RsaKey"/> is reclaimed by garbage collection.
- /// </summary>
- ~RsaKey()
- {
- Dispose(disposing: false);
- }
- }
- }
|