ECPKParameters_print.pod 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. =pod
  2. =head1 NAME
  3. ECPKParameters_print, ECPKParameters_print_fp - Functions for decoding and
  4. encoding ASN1 representations of elliptic curve entities
  5. =head1 SYNOPSIS
  6. #include <openssl/ec.h>
  7. int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off);
  8. int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off);
  9. =head1 DESCRIPTION
  10. The ECPKParameters represent the public parameters for an
  11. B<EC_GROUP> structure, which represents a curve.
  12. The ECPKParameters_print() and ECPKParameters_print_fp() functions print
  13. a human-readable output of the public parameters of the EC_GROUP to B<bp>
  14. or B<fp>. The output lines are indented by B<off> spaces.
  15. =head1 RETURN VALUES
  16. ECPKParameters_print() and ECPKParameters_print_fp()
  17. return 1 for success and 0 if an error occurs.
  18. =head1 SEE ALSO
  19. L<crypto(7)>, L<EC_GROUP_new(3)>, L<EC_GROUP_copy(3)>,
  20. L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
  21. L<EC_GFp_simple_method(3)>,
  22. =head1 COPYRIGHT
  23. Copyright 2013-2017 The OpenSSL Project Authors. All Rights Reserved.
  24. Licensed under the Apache License 2.0 (the "License"). You may not use
  25. this file except in compliance with the License. You can obtain a copy
  26. in the file LICENSE in the source distribution or at
  27. L<https://www.openssl.org/source/license.html>.
  28. =cut