KeyAgreeRecipientInfo.cs 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // KeyAgreeRecipientInfo.cs - System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo
  3. //
  4. // Author:
  5. // Sebastien Pouliot ([email protected])
  6. //
  7. // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
  8. //
  9. #if NET_1_2
  10. using System;
  11. namespace System.Security.Cryptography.Pkcs {
  12. [MonoTODO]
  13. public sealed class KeyAgreeRecipientInfo : RecipientInfo {
  14. // only accessible from EnvelopedPkcs7.RecipientInfos
  15. internal KeyAgreeRecipientInfo () {}
  16. public DateTime Date {
  17. get { return DateTime.MinValue; }
  18. }
  19. public override byte[] EncryptedKey {
  20. get { return null; }
  21. }
  22. public override AlgorithmIdentifier KeyEncryptionAlgorithm {
  23. get { return null; }
  24. }
  25. public SubjectIdentifierOrKey OriginatorIdentifierOrKey {
  26. get { return null; }
  27. }
  28. public CryptographicAttribute OtherKeyAttribute {
  29. get { return null; }
  30. }
  31. public override SubjectIdentifier RecipientIdentifier {
  32. get { return null; }
  33. }
  34. public override int Version {
  35. get { return 0; }
  36. }
  37. }
  38. }
  39. #endif