ASN1.cpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright (c) 2021, the SerenityOS developers.
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice, this
  9. * list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  19. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  22. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  23. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  24. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #include <LibCrypto/ASN1/ASN1.h>
  27. namespace Crypto::ASN1 {
  28. String kind_name(Kind kind)
  29. {
  30. switch (kind) {
  31. case Kind::Eol:
  32. return "EndOfList";
  33. case Kind::Boolean:
  34. return "Boolean";
  35. case Kind::Integer:
  36. return "Integer";
  37. case Kind::BitString:
  38. return "BitString";
  39. case Kind::OctetString:
  40. return "OctetString";
  41. case Kind::Null:
  42. return "Null";
  43. case Kind::ObjectIdentifier:
  44. return "ObjectIdentifier";
  45. case Kind::IA5String:
  46. return "IA5String";
  47. case Kind::PrintableString:
  48. return "PrintableString";
  49. case Kind::Utf8String:
  50. return "UTF8String";
  51. case Kind::UTCTime:
  52. return "UTCTime";
  53. case Kind::Sequence:
  54. return "Sequence";
  55. case Kind::Set:
  56. return "Set";
  57. }
  58. return "InvalidKind";
  59. }
  60. String class_name(Class class_)
  61. {
  62. switch (class_) {
  63. case Class::Application:
  64. return "Application";
  65. case Class::Context:
  66. return "Context";
  67. case Class::Private:
  68. return "Private";
  69. case Class::Universal:
  70. return "Universal";
  71. }
  72. return "InvalidClass";
  73. }
  74. String type_name(Type type)
  75. {
  76. switch (type) {
  77. case Type::Constructed:
  78. return "Constructed";
  79. case Type::Primitive:
  80. return "Primitive";
  81. }
  82. return "InvalidType";
  83. }
  84. }