AsymmetricCipher.cs 357 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Renci.SshNet.Common;
  6. namespace Renci.SshNet.Security.Cryptography
  7. {
  8. public abstract class AsymmetricCipher
  9. {
  10. public abstract byte[] Transform(byte[] input);
  11. public abstract BigInteger Transform(BigInteger input);
  12. }
  13. }