Configs.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using PCC.App.Security;
  2. using System.Security.Cryptography;
  3. namespace PCC.App.Tpm;
  4. public interface ILocalPeerInfo
  5. {
  6. //RSA PublicKey { get; }
  7. RSA PrivateKey { get; }
  8. string PeerId { get; }
  9. string Address { get; }
  10. int Port { get; }
  11. ICollection<IRemotePeerInfo> TrustedRemotePeers { get; }
  12. }
  13. public class LocalPeerInfo(byte[] publicKey, byte[] privateKey, string address, int port, ICollection<IRemotePeerInfo> remotePeers) : ILocalPeerInfo
  14. {
  15. //public RSA PublicKey { get; } = RsaUtility.FromPKCS1PublicKey(publicKey);
  16. public RSA PrivateKey { get; } = RsaUtility.FromPKCS1PrivateKey(privateKey);
  17. public string PeerId { get; } = Convert.ToHexString(SHA256.HashData(publicKey));
  18. public string Address { get; } = address;
  19. public int Port { get; } = port;
  20. public ICollection<IRemotePeerInfo> TrustedRemotePeers { get; } = remotePeers;
  21. }
  22. public interface IRemotePeerInfo
  23. {
  24. RSA PublicKey { get; }
  25. string PeerId { get; }
  26. string Host { get; }
  27. int Port { get; }
  28. }
  29. public class RemotePeerInfo(byte[] publicKey, string host, int port) : IRemotePeerInfo
  30. {
  31. public RSA PublicKey { get; } = RsaUtility.FromPKCS1PublicKey(publicKey);
  32. public string PeerId { get; } = Convert.ToHexString(SHA256.HashData(publicKey));
  33. public string Host { get; } = host;
  34. public int Port { get; } = port;
  35. }