1=pod
2
3=head1 NAME
4
5PKCS12_add_CSPName_asc - Add a Microsoft CSP Name attribute to a PKCS#12 safeBag
6
7=head1 SYNOPSIS
8
9 #include <openssl/pkcs12.h>
10
11 int PKCS12_add_CSPName_asc(PKCS12_SAFEBAG *bag, const char *name, int namelen);
12
13=head1 DESCRIPTION
14
15PKCS12_add_CSPName_asc() adds an ASCII string representation of the Microsoft CSP Name attribute to a PKCS#12 safeBag.
16
17I<bag> is the B<PKCS12_SAFEBAG> to add the attribute to.
18
19=head1 RETURN VALUES
20
21Returns 1 for success or 0 for failure.
22
23=head1 SEE ALSO
24
25L<PKCS12_add_friendlyname_asc(3)>
26
27=head1 COPYRIGHT
28
29Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
30
31Licensed under the Apache License 2.0 (the "License").  You may not use
32this file except in compliance with the License.  You can obtain a copy
33in the file LICENSE in the source distribution or at
34L<https://www.openssl.org/source/license.html>.
35
36=cut
37