SecurityAlgorithmSuiteConverter.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. //
  2. // SecurityAlgorithmSuiteConverter.cs
  3. //
  4. // Author:
  5. // Igor Zelmanovich <[email protected]>
  6. //
  7. // Copyright (C) 2008 Mainsoft, Inc. http://www.mainsoft.com
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining
  10. // a copy of this software and associated documentation files (the
  11. // "Software"), to deal in the Software without restriction, including
  12. // without limitation the rights to use, copy, modify, merge, publish,
  13. // distribute, sublicense, and/or sell copies of the Software, and to
  14. // permit persons to whom the Software is furnished to do so, subject to
  15. // the following conditions:
  16. //
  17. // The above copyright notice and this permission notice shall be
  18. // included in all copies or substantial portions of the Software.
  19. //
  20. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  21. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  24. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  25. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. //
  28. using System;
  29. using System.Collections.Generic;
  30. using System.Text;
  31. using System.ComponentModel;
  32. using System.ServiceModel.Security;
  33. namespace System.ServiceModel.Configuration
  34. {
  35. sealed class SecurityAlgorithmSuiteConverter : TypeConverter
  36. {
  37. public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType) {
  38. return sourceType == typeof (string);
  39. }
  40. public override object ConvertFrom (ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) {
  41. string strValue = (string) value;
  42. switch (strValue.ToLowerInvariant ()) {
  43. case "default":
  44. return SecurityAlgorithmSuite.Default;
  45. case "basic128":
  46. return SecurityAlgorithmSuite.Basic128;
  47. case "basic128rsa15":
  48. return SecurityAlgorithmSuite.Basic128Rsa15;
  49. case "basic128sha256":
  50. return SecurityAlgorithmSuite.Basic128Sha256;
  51. case "basic128sha256rsa15":
  52. return SecurityAlgorithmSuite.Basic128Sha256Rsa15;
  53. case "basic192":
  54. return SecurityAlgorithmSuite.Basic192;
  55. case "basic192rsa15":
  56. return SecurityAlgorithmSuite.Basic192Rsa15;
  57. case "basic192sha256":
  58. return SecurityAlgorithmSuite.Basic192Sha256;
  59. case "basic192sha256rsa15":
  60. return SecurityAlgorithmSuite.Basic192Sha256Rsa15;
  61. case "basic256":
  62. return SecurityAlgorithmSuite.Basic256;
  63. case "basic256rsa15":
  64. return SecurityAlgorithmSuite.Basic256Rsa15;
  65. case "basic256sha256":
  66. return SecurityAlgorithmSuite.Basic256Sha256;
  67. case "basic256sha256rsa15":
  68. return SecurityAlgorithmSuite.Basic256Sha256Rsa15;
  69. }
  70. throw new ArgumentException ();
  71. }
  72. public override object ConvertTo (ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType) {
  73. return base.ConvertTo (context, culture, value, destinationType);
  74. }
  75. }
  76. }