/*1* Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89/*10* Options are shared by apps (see apps.h) and the test system11* (see test/testutil.h').12* In order to remove the dependency between apps and options, the following13* shared fields have been moved into this file.14*/1516#ifndef OSSL_APPS_FMT_H17#define OSSL_APPS_FMT_H1819/*20* On some platforms, it's important to distinguish between text and binary21* files. On some, there might even be specific file formats for different22* contents. The FORMAT_xxx macros are meant to express an intent with the23* file being read or created.24*/25# define B_FORMAT_TEXT 0x800026# define FORMAT_UNDEF 027# define FORMAT_TEXT (1 | B_FORMAT_TEXT) /* Generic text */28# define FORMAT_BINARY 2 /* Generic binary */29# define FORMAT_BASE64 (3 | B_FORMAT_TEXT) /* Base64 */30# define FORMAT_ASN1 4 /* ASN.1/DER */31# define FORMAT_PEM (5 | B_FORMAT_TEXT)32# define FORMAT_PKCS12 633# define FORMAT_SMIME (7 | B_FORMAT_TEXT)34# define FORMAT_ENGINE 8 /* Not really a file format */35# define FORMAT_PEMRSA (9 | B_FORMAT_TEXT) /* PEM RSAPublicKey format */36# define FORMAT_ASN1RSA 10 /* DER RSAPublicKey format */37# define FORMAT_MSBLOB 11 /* MS Key blob format */38# define FORMAT_PVK 12 /* MS PVK file format */39# define FORMAT_HTTP 13 /* Download using HTTP */40# define FORMAT_NSS 14 /* NSS keylog format */4142int FMT_istext(int format);4344#endif /* OSSL_APPS_FMT_H_ */454647