Fix the docs too
[openssl.git] / doc / crypto / DSA_size.pod
1 =pod
2
3 =head1 NAME
4
5 DSA_size - get DSA signature size
6
7 =head1 SYNOPSIS
8
9  #include <openssl/dsa.h>
10
11  int DSA_size(const DSA *dsa);
12
13 =head1 DESCRIPTION
14
15 This function returns the size of an ASN.1 encoded DSA signature in
16 bytes. It can be used to determine how much memory must be allocated
17 for a DSA signature.
18
19 B<dsa-E<gt>q> must not be B<NULL>.
20
21 =head1 RETURN VALUE
22
23 The size in bytes.
24
25 =head1 SEE ALSO
26
27 L<dsa(3)>, L<DSA_sign(3)>
28
29 =head1 COPYRIGHT
30
31 Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
32
33 Licensed under the OpenSSL license (the "License").  You may not use
34 this file except in compliance with the License.  You can obtain a copy
35 in the file LICENSE in the source distribution or at
36 L<https://www.openssl.org/source/license.html>.
37
38 =cut