cmp_mock_srv.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright Siemens AG 2018-2020
  4. *
  5. * Licensed under the Apache License 2.0 (the "License"). You may not use
  6. * this file except in compliance with the License. You can obtain a copy
  7. * in the file LICENSE in the source distribution or at
  8. * https://www.openssl.org/source/license.html
  9. */
  10. #ifndef OSSL_APPS_CMP_MOCK_SRV_H
  11. # define OSSL_APPS_CMP_MOCK_SRV_H
  12. # include <openssl/opensslconf.h>
  13. # ifndef OPENSSL_NO_CMP
  14. # include <openssl/cmp.h>
  15. OSSL_CMP_SRV_CTX *ossl_cmp_mock_srv_new(OSSL_LIB_CTX *libctx,
  16. const char *propq);
  17. void ossl_cmp_mock_srv_free(OSSL_CMP_SRV_CTX *srv_ctx);
  18. int ossl_cmp_mock_srv_set1_certOut(OSSL_CMP_SRV_CTX *srv_ctx, X509 *cert);
  19. int ossl_cmp_mock_srv_set1_chainOut(OSSL_CMP_SRV_CTX *srv_ctx,
  20. STACK_OF(X509) *chain);
  21. int ossl_cmp_mock_srv_set1_caPubsOut(OSSL_CMP_SRV_CTX *srv_ctx,
  22. STACK_OF(X509) *caPubs);
  23. int ossl_cmp_mock_srv_set_statusInfo(OSSL_CMP_SRV_CTX *srv_ctx, int status,
  24. int fail_info, const char *text);
  25. int ossl_cmp_mock_srv_set_send_error(OSSL_CMP_SRV_CTX *srv_ctx, int val);
  26. int ossl_cmp_mock_srv_set_pollCount(OSSL_CMP_SRV_CTX *srv_ctx, int count);
  27. int ossl_cmp_mock_srv_set_checkAfterTime(OSSL_CMP_SRV_CTX *srv_ctx, int sec);
  28. # endif /* !defined(OPENSSL_NO_CMP) */
  29. #endif /* !defined(OSSL_APPS_CMP_MOCK_SRV_H) */