blob: 47710d9cbfbf02256cc69c10ffecf1438066fec5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
using System;
using System.Collections.Generic;
using Org.BouncyCastle.Asn1.Misc;
using Org.BouncyCastle.Asn1.Nist;
using Org.BouncyCastle.Asn1.Oiw;
using Org.BouncyCastle.Asn1.Pkcs;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.Smime
{
/**
* Handler class for dealing with S/MIME Capabilities
*/
public class SmimeCapabilities
: Asn1Encodable
{
/**
* general preferences
*/
public static readonly DerObjectIdentifier PreferSignedData = PkcsObjectIdentifiers.PreferSignedData;
public static readonly DerObjectIdentifier CannotDecryptAny = PkcsObjectIdentifiers.CannotDecryptAny;
public static readonly DerObjectIdentifier SmimeCapabilitesVersions = PkcsObjectIdentifiers.SmimeCapabilitiesVersions;
/**
* encryption algorithms preferences
*/
public static readonly DerObjectIdentifier Aes256Cbc = NistObjectIdentifiers.IdAes256Cbc;
public static readonly DerObjectIdentifier Aes192Cbc = NistObjectIdentifiers.IdAes192Cbc;
public static readonly DerObjectIdentifier Aes128Cbc = NistObjectIdentifiers.IdAes128Cbc;
public static readonly DerObjectIdentifier IdeaCbc = MiscObjectIdentifiers.as_sys_sec_alg_ideaCBC;
public static readonly DerObjectIdentifier Cast5Cbc = MiscObjectIdentifiers.cast5CBC;
public static readonly DerObjectIdentifier DesCbc = OiwObjectIdentifiers.DesCbc;
public static readonly DerObjectIdentifier DesEde3Cbc = PkcsObjectIdentifiers.DesEde3Cbc;
public static readonly DerObjectIdentifier RC2Cbc = PkcsObjectIdentifiers.RC2Cbc;
private Asn1Sequence capabilities;
/**
* return an Attr object from the given object.
*
* @param o the object we want converted.
* @exception ArgumentException if the object cannot be converted.
*/
public static SmimeCapabilities GetInstance(
object obj)
{
if (obj == null || obj is SmimeCapabilities)
{
return (SmimeCapabilities) obj;
}
if (obj is Asn1Sequence)
{
return new SmimeCapabilities((Asn1Sequence) obj);
}
if (obj is AttributeX509)
{
return new SmimeCapabilities(
(Asn1Sequence)(((AttributeX509) obj).AttrValues[0]));
}
throw new ArgumentException("unknown object in factory: " + Platform.GetTypeName(obj), "obj");
}
public SmimeCapabilities(
Asn1Sequence seq)
{
capabilities = seq;
}
/**
* returns an ArrayList with 0 or more objects of all the capabilities
* matching the passed in capability Oid. If the Oid passed is null the
* entire set is returned.
*/
public IList<SmimeCapability> GetCapabilitiesForOid(DerObjectIdentifier capability)
{
var list = new List<SmimeCapability>();
DoGetCapabilitiesForOid(capability, list);
return list;
}
private void DoGetCapabilitiesForOid(DerObjectIdentifier capability, IList<SmimeCapability> list)
{
foreach (object o in capabilities)
{
SmimeCapability cap = SmimeCapability.GetInstance(o);
if (capability == null || capability.Equals(cap.CapabilityID))
{
list.Add(cap);
}
}
}
/**
* Produce an object suitable for an Asn1OutputStream.
* <pre>
* SMIMECapabilities ::= Sequence OF SMIMECapability
* </pre>
*/
public override Asn1Object ToAsn1Object()
{
return capabilities;
}
}
}
|