fmt.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (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 HEADER_FMT_H
  16. #define HEADER_FMT_H
  17. /* On some platforms, it's important to distinguish between text and binary
  18. * files. On some, there might even be specific file formats for different
  19. * contents. The FORMAT_xxx macros are meant to express an intent with the
  20. * file being read or created.
  21. */
  22. # define B_FORMAT_TEXT 0x8000
  23. # define FORMAT_UNDEF 0
  24. # define FORMAT_TEXT (1 | B_FORMAT_TEXT) /* Generic text */
  25. # define FORMAT_BINARY 2 /* Generic binary */
  26. # define FORMAT_BASE64 (3 | B_FORMAT_TEXT) /* Base64 */
  27. # define FORMAT_ASN1 4 /* ASN.1/DER */
  28. # define FORMAT_PEM (5 | B_FORMAT_TEXT)
  29. # define FORMAT_PKCS12 6
  30. # define FORMAT_SMIME (7 | B_FORMAT_TEXT)
  31. # define FORMAT_ENGINE 8 /* Not really a file format */
  32. # define FORMAT_PEMRSA (9 | B_FORMAT_TEXT) /* PEM RSAPublicKey format */
  33. # define FORMAT_ASN1RSA 10 /* DER RSAPublicKey format */
  34. # define FORMAT_MSBLOB 11 /* MS Key blob format */
  35. # define FORMAT_PVK 12 /* MS PVK file format */
  36. # define FORMAT_HTTP 13 /* Download using HTTP */
  37. # define FORMAT_NSS 14 /* NSS keylog format */
  38. int FMT_istext(int format);
  39. #endif /* HEADER_FMT_H_ */