X509IssuerSerial.cs 336 B

123456789101112131415161718
  1. //
  2. // X509IssuerSerial.cs - X509IssuerSerial implementation for XML Encryption
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2004
  8. #if NET_1_2
  9. namespace System.Security.Cryptography.Xml {
  10. public struct X509IssuerSerial {
  11. public string IssuerName;
  12. public string SerialNumber;
  13. }
  14. }
  15. #endif