fmt.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright 2018-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. /*
  10. * Options are shared by apps (see apps.h) and the test system
  11. * (see test/testutil.h').
  12. * In order to remove the dependency between apps and options, the following
  13. * shared fields have been moved into this file.
  14. */
  15. #ifndef OSSL_APPS_FMT_H
  16. #define OSSL_APPS_FMT_H
  17. /*
  18. * On some platforms, it's important to distinguish between text and binary
  19. * files. On some, there might even be specific file formats for different
  20. * contents. The FORMAT_xxx macros are meant to express an intent with the
  21. * file being read or created.
  22. */
  23. # define B_FORMAT_TEXT 0x8000
  24. # define FORMAT_UNDEF 0
  25. # define FORMAT_TEXT (1 | B_FORMAT_TEXT) /* Generic text */
  26. # define FORMAT_BINARY 2 /* Generic binary */
  27. # define FORMAT_BASE64 (3 | B_FORMAT_TEXT) /* Base64 */
  28. # define FORMAT_ASN1 4 /* ASN.1/DER */
  29. # define FORMAT_PEM (5 | B_FORMAT_TEXT)
  30. # define FORMAT_PKCS12 6
  31. # define FORMAT_SMIME (7 | B_FORMAT_TEXT)
  32. # define FORMAT_ENGINE 8 /* Not really a file format */
  33. # define FORMAT_PEMRSA (9 | B_FORMAT_TEXT) /* PEM RSAPublicKey format */
  34. # define FORMAT_ASN1RSA 10 /* DER RSAPublicKey format */
  35. # define FORMAT_MSBLOB 11 /* MS Key blob format */
  36. # define FORMAT_PVK 12 /* MS PVK file format */
  37. # define FORMAT_HTTP 13 /* Download using HTTP */
  38. # define FORMAT_NSS 14 /* NSS keylog format */
  39. int FMT_istext(int format);
  40. #endif /* OSSL_APPS_FMT_H_ */