| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- 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
- {
- /// <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>
- /// Gets the digital signature.
- /// </summary>
- protected override DigitalSignature DigitalSignature
- {
- get
- {
- if (_digitalSignature == null)
- {
- _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];
- _privateKey[0] = modulus;
- _privateKey[1] = exponent;
- _privateKey[2] = d;
- _privateKey[3] = p;
- _privateKey[4] = q;
- _privateKey[5] = PrimeExponent(d, p);
- _privateKey[6] = PrimeExponent(d, q);
- _privateKey[7] = inverseQ;
- }
- private static BigInteger PrimeExponent(BigInteger privateExponent, BigInteger prime)
- {
- BigInteger pe = prime - new BigInteger(1);
- return privateExponent % pe;
- }
- #region IDisposable Members
- private bool _isDisposed;
- /// <summary>
- /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages.
- /// </summary>
- public void Dispose()
- {
- Dispose(true);
- GC.SuppressFinalize(this);
- }
- /// <summary>
- /// Releases unmanaged and - optionally - managed resources
- /// </summary>
- /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged ResourceMessages.</param>
- protected virtual void Dispose(bool disposing)
- {
- // Check to see if Dispose has already been called.
- if (!_isDisposed)
- {
- // If disposing equals true, dispose all managed
- // and unmanaged ResourceMessages.
- if (disposing)
- {
- // Dispose managed ResourceMessages.
- if (_digitalSignature != null)
- {
- _digitalSignature.Dispose();
- _digitalSignature = null;
- }
- }
- // Note disposing has been done.
- _isDisposed = true;
- }
- }
- /// <summary>
- /// Releases unmanaged resources and performs other cleanup operations before the
- /// <see cref="SshCommand"/> is reclaimed by garbage collection.
- /// </summary>
- ~RsaKey()
- {
- // Do not re-create Dispose clean-up code here.
- // Calling Dispose(false) is optimal in terms of
- // readability and maintainability.
- Dispose(false);
- }
- #endregion
- }
- }
|