d2i_Netscape_RSA.pod 1004 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. =pod
  2. =head1 NAME
  3. i2d_Netscape_RSA,
  4. d2i_Netscape_RSA
  5. - insecure RSA public and private key encoding functions
  6. =head1 SYNOPSIS
  7. #include <openssl/rsa.h>
  8. int i2d_Netscape_RSA(RSA *a, unsigned char **pp, int (*cb)());
  9. RSA * d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length, int (*cb)());
  10. =head1 DESCRIPTION
  11. These functions decode and encode an RSA private
  12. key in NET format. These functions are present to provide compatibility
  13. with very old software. This format has some severe security weaknesses
  14. and should be avoided if possible.
  15. These functions are similar to the B<d2i_RSAPrivateKey> functions.
  16. =head1 SEE ALSO
  17. L<d2i_RSAPrivateKey(3)>
  18. =head1 COPYRIGHT
  19. Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
  20. Licensed under the OpenSSL license (the "License"). You may not use
  21. this file except in compliance with the License. You can obtain a copy
  22. in the file LICENSE in the source distribution or at
  23. L<https://www.openssl.org/source/license.html>.
  24. =cut