remove .cvsignore from everywhere, as it is useless on svn
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Pkcs / Pkcs9MessageDigest.cs
1 //
2 // System.Security.Cryptography.Pkcs.Pkcs9MessageDigest class
3 //
4 // Authors:
5 //      Tim Coleman (tim@timcoleman.com)
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) Tim Coleman, 2004
9 // Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32
33 using Mono.Security;
34
35 namespace System.Security.Cryptography.Pkcs {
36
37         public sealed class Pkcs9MessageDigest : Pkcs9AttributeObject {
38
39                 internal const string oid = "1.2.840.113549.1.9.4";
40                 internal const string friendlyName = "Message Digest";
41
42                 private byte[] _messageDigest;
43                 private byte[] _encoded;
44
45                 // constructors
46
47                 public Pkcs9MessageDigest () 
48                 {
49                         // Pkcs9Attribute remove the "set" accessor on Oid :-(
50                         (this as AsnEncodedData).Oid = new Oid (oid, friendlyName);
51                         _encoded = null;
52                 }
53
54                 internal Pkcs9MessageDigest (byte[] messageDigest, bool encoded) 
55                 {
56                         if (messageDigest == null)
57                                 throw new ArgumentNullException ("messageDigest");
58
59                         if (encoded) {
60                                 (this as AsnEncodedData).Oid = new Oid (oid, friendlyName);
61                                 RawData = messageDigest;
62                                 Decode (messageDigest);
63                         } else {
64                                 (this as AsnEncodedData).Oid = new Oid (oid, friendlyName);
65                                 _messageDigest = (byte[]) _messageDigest.Clone ();
66                                 RawData = Encode ();
67                         }
68                 }
69
70                 // properties
71
72                 public byte[] MessageDigest {
73                         get {
74                                 if (_encoded != null)
75                                         Decode (_encoded);
76                                 // FIXME: beta2 returns a reference
77                                 return _messageDigest;
78                         }
79                 }
80
81                 // methods
82
83                 public override void CopyFrom (AsnEncodedData asnEncodedData)
84                 {
85                         base.CopyFrom (asnEncodedData);
86                         _encoded = asnEncodedData.RawData;
87                 }
88
89                 // internal stuff
90
91                 internal void Decode (byte[] attribute)
92                 {
93                         if ((attribute == null) || (attribute [0] != 0x04))
94                                 throw new CryptographicException (Locale.GetText ("Expected an OCTETSTRING."));
95
96                         ASN1 md = new ASN1 (attribute);
97                         _messageDigest = md.Value;
98                         _encoded  = null;
99                 }
100
101                 internal byte[] Encode ()
102                 {
103                         ASN1 md = new ASN1 (0x04, _messageDigest);
104                         return md.GetBytes ();
105                 }
106         }
107 }
108
109 #endif