X509_build_chain function

  1. @Native<Pointer<stack_st_X509> Function(Pointer<x509_st>, Pointer<stack_st_X509>, Pointer<x509_store_st>, Int, Pointer<ossl_lib_ctx_st>, Pointer<Char>)>(ffi.Pointer<x509_st>, ffi.Pointer<stack_st_X509>, ffi.Pointer<x509_store_st>, ffi.Int, ffi.Pointer<ossl_lib_ctx_st>, ffi.Pointer<ffi.Char>)>()
Pointer<stack_st_X509> X509_build_chain(
  1. Pointer<x509_st> target,
  2. Pointer<stack_st_X509> certs,
  3. Pointer<x509_store_st> store,
  4. int with_self_signed,
  5. Pointer<ossl_lib_ctx_st> libctx,
  6. Pointer<Char> propq,
)

Implementation

@ffi.Native<
  ffi.Pointer<stack_st_X509> Function(
    ffi.Pointer<x509_st>,
    ffi.Pointer<stack_st_X509>,
    ffi.Pointer<x509_store_st>,
    ffi.Int,
    ffi.Pointer<ossl_lib_ctx_st>,
    ffi.Pointer<ffi.Char>,
  )
>()
external ffi.Pointer<stack_st_X509> X509_build_chain(
  ffi.Pointer<x509_st> target,
  ffi.Pointer<stack_st_X509> certs,
  ffi.Pointer<x509_store_st> store,
  int with_self_signed,
  ffi.Pointer<ossl_lib_ctx_st> libctx,
  ffi.Pointer<ffi.Char> propq,
);