X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Security.Cryptography%2FKeyNumber.cs;h=b005f2511a42ad9580dfce79c856de870ba9b523;hb=b5cfba1835f2ba823796f825410e0062b7e4c9a3;hp=503e258c3b751a693903f786164a7e0dbff5d271;hpb=7f449e7aff8f374d13db7023c7b326dde01b763d;p=mono.git diff --git a/mcs/class/corlib/System.Security.Cryptography/KeyNumber.cs b/mcs/class/corlib/System.Security.Cryptography/KeyNumber.cs old mode 100755 new mode 100644 index 503e258c3b7..b005f2511a4 --- a/mcs/class/corlib/System.Security.Cryptography/KeyNumber.cs +++ b/mcs/class/corlib/System.Security.Cryptography/KeyNumber.cs @@ -2,13 +2,10 @@ // KeyNumber.cs: Key Number for CAPI containers // // Author: -// Sebastien Pouliot (spouliot@motus.com) +// Sebastien Pouliot (sebastien@ximian.com) // // (C) 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 @@ -32,14 +29,16 @@ #if NET_2_0 -using System; +using System.Runtime.InteropServices; namespace System.Security.Cryptography { + [ComVisible (true)] + [Serializable] public enum KeyNumber { - Exchange, - Signature + Exchange = 1, + Signature = 2 } } -#endif \ No newline at end of file +#endif