ec_common.h 571 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OPENSSL_NO_EC
  10. static const char *point_format_options[] = {
  11. "uncompressed",
  12. "compressed",
  13. "hybrid",
  14. NULL
  15. };
  16. static const char *asn1_encoding_options[] = {
  17. "named_curve",
  18. "explicit",
  19. NULL
  20. };
  21. #endif