[crypto/ec] deprecate Jprojective_coordinates_GFp functions
[openssl.git] / doc / man3 / ISSUER_SIGN_TOOL_new.pod
1 =pod
2
3 =head1 NAME
4
5 ISSUER_SIGN_TOOL_new, ISSUER_SIGN_TOOL_free,ISSUER_SIGN_TOOL_it,
6 d2i_ISSUER_SIGN_TOOL, i2d_ISSUER_SIGN_TOOL
7
8 =head1 SYNOPSIS
9
10 =for openssl generic
11
12  #include <openssl/x509v3.h>
13
14  extern const ISSUER_SIGN_TOOL_it;
15
16  ISSUER_SIGN_TOOL *ISSUER_SIGN_TOOL_new(void);
17  void ISSUER_SIGN_TOOL_free(ISSUER_SIGN_TOOL *v);
18
19  ISSUER_SIGN_TOOL *d2i_ISSUER_SIGN_TOOL(ISSUER_SIGN_TOOL **a, const unsigned char **pp, long length);
20  int i2d_ISSUER_SIGN_TOOL(const ISSUER_SIGN_TOOL *a, unsigned char **pp);
21
22 =head1 DESCRIPTION
23
24 The ISSUER_SIGN_TOOL_new() function returns a new ISSUER_SIGN_TOOL.
25
26 ISSUER_SIGN_TOOL_free() frees up a single ISSUER_SIGN_TOOL object.
27
28 =head1 RETURN VALUES
29
30 ISSUER_SIGN_TOOL_new() returns a newly created ISSUER_SIGN_TOOL or NULL if the call fails.
31
32 ISSUER_SIGN_TOOL_free() does not return values.
33
34 d2i_ISSUER_SIGN_TOOL() and i2d_ISSUER_SIGN_TOOL() decode and encode an B<ISSUER_SIGN_TOOL>
35 structure. They otherwise follow the conventions of other ASN.1 functions such as d2i_X509().
36
37 =head1 HISTORY
38
39 The ISSUER_SIGN_TOOL_up_ref(), ISSUER_SIGN_TOOL_lock() and ISSUER_SIGN_TOOL_unlock()
40 functions were added in OpenSSL 3.0.
41
42 =head1 COPYRIGHT
43
44 Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
45
46 Licensed under the Apache License 2.0 (the "License").  You may not use
47 this file except in compliance with the License.  You can obtain a copy
48 in the file LICENSE in the source distribution or at
49 L<https://www.openssl.org/source/license.html>.
50
51 =cut