CryptoConfig.cs: Inverse name and oid when reading them from machine.config. Part...
[mono.git] / mcs / class / corlib / System.Security.Cryptography / MACTripleDES.cs
index f24dad755527248c83502492b1986a7da60d0d25..73eb0e58fbaa3df3a5026494a34867033fdef5aa 100644 (file)
@@ -2,10 +2,10 @@
 // MACTripleDES.cs: Handles MAC with TripleDES
 //
 // Author:
-//     Sebastien Pouliot (spouliot@motus.com)
+//     Sebastien Pouliot (sebastien@ximian.com)
 //
 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -39,6 +39,9 @@ namespace System.Security.Cryptography {
        //      http://www.itl.nist.gov/fipspubs/fip81.htm
        
        // LAMESPEC: MACTripleDES == MAC-CBC using TripleDES (not MAC-CFB).
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public class MACTripleDES: KeyedHashAlgorithm {
        
                private TripleDES tdes;