blob: 55c1c8cd55dbd60347bcd3dd899dfdad5d572a61 (
plain)
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/*************************************************
* CMS Decoding Source File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#include <botan/cms_dec.h>
#include <botan/ber_dec.h>
#include <botan/asn1_int.h>
#include <botan/oids.h>
#include <botan/pem.h>
namespace Botan {
/*************************************************
* CMS_Decoder Constructor *
*************************************************/
CMS_Decoder::CMS_Decoder(DataSource& in, const X509_Store& x509store,
User_Interface& ui_ref, PKCS8_PrivateKey* key) :
ui(ui_ref), store(x509store)
{
status = GOOD;
add_key(key);
if(ASN1::maybe_BER(in) && !PEM_Code::matches(in))
initial_read(in);
else
{
DataSource_Memory ber(PEM_Code::decode_check_label(in, "PKCS7"));
initial_read(ber);
}
}
/*************************************************
* Read the outermost ContentInfo *
*************************************************/
void CMS_Decoder::initial_read(DataSource&)
{
// FIXME...
/*
BER_Decoder decoder(in);
BER_Decoder content_info = decoder.start_cons(SEQUENCE);
content_info.decode(next_type);
BER_Decoder content_type = BER::get_subsequence(content_info, ASN1_Tag(0));
data = content_type.get_remaining();
*/
decode_layer();
}
/*************************************************
* Add another private key to use *
*************************************************/
void CMS_Decoder::add_key(PKCS8_PrivateKey* key)
{
if(!key)
return;
#if 0
for(u32bit j = 0; j != keys.size(); j++)
if(keys[j]->key_id() == key->key_id())
return;
#endif
keys.push_back(key);
}
/*************************************************
* Return the status information *
*************************************************/
CMS_Decoder::Status CMS_Decoder::layer_status() const
{
return status;
}
/*************************************************
* Return the final data content *
*************************************************/
std::string CMS_Decoder::get_data() const
{
if(layer_type() != DATA)
throw Invalid_State("CMS: Cannot retrieve data from non-DATA layer");
return std::string((const char*)data.begin(), data.size());
}
/*************************************************
* Return the content type of this layer *
*************************************************/
CMS_Decoder::Content_Type CMS_Decoder::layer_type() const
{
if(type == OIDS::lookup("CMS.DataContent")) return DATA;
if(type == OIDS::lookup("CMS.EnvelopedData")) return ENVELOPED;
if(type == OIDS::lookup("CMS.CompressedData")) return COMPRESSED;
if(type == OIDS::lookup("CMS.SignedData")) return SIGNED;
if(type == OIDS::lookup("CMS.AuthenticatedData")) return AUTHENTICATED;
if(type == OIDS::lookup("CMS.DigestedData")) return DIGESTED;
return UNKNOWN;
}
/*************************************************
* Return some information about this layer *
*************************************************/
std::string CMS_Decoder::layer_info() const
{
return info;
}
/*************************************************
* Return some information about this layer *
*************************************************/
void CMS_Decoder::read_econtent(BER_Decoder& decoder)
{
BER_Decoder econtent_info = decoder.start_cons(SEQUENCE);
econtent_info.decode(next_type);
// FIXME
//BER_Decoder econtent = BER::get_subsequence(econtent_info, ASN1_Tag(0));
//econtent.decode(data, OCTET_STRING);
}
}
|