| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // KeyAgreeRecipientInfo.cs - System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo
- //
- // Author:
- // Sebastien Pouliot ([email protected])
- //
- // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
- //
- #if NET_1_2
- using System;
- namespace System.Security.Cryptography.Pkcs {
- [MonoTODO]
- public sealed class KeyAgreeRecipientInfo : RecipientInfo {
- // only accessible from EnvelopedPkcs7.RecipientInfos
- internal KeyAgreeRecipientInfo () {}
- public DateTime Date {
- get { return DateTime.MinValue; }
- }
- public override byte[] EncryptedKey {
- get { return null; }
- }
- public override AlgorithmIdentifier KeyEncryptionAlgorithm {
- get { return null; }
- }
- public SubjectIdentifierOrKey OriginatorIdentifierOrKey {
- get { return null; }
- }
- public CryptographicAttribute OtherKeyAttribute {
- get { return null; }
- }
- public override SubjectIdentifier RecipientIdentifier {
- get { return null; }
- }
- public override int Version {
- get { return 0; }
- }
- }
- }
- #endif
|