update rather ancient EVP digest documentation
[openssl.git] / doc / crypto / BN_mod_inverse.pod
index 9f3889f8a6d7332fdf2cd83dba5c5ce9bbdfc5a5..3ea3975c7422ba7a65b904bf6786e1c046d872b7 100644 (file)
@@ -2,13 +2,14 @@
 
 =head1 NAME
 
-BN_mod_inverse - Compute inverse modulo n
+BN_mod_inverse - compute inverse modulo n
 
 =head1 SYNOPSIS
 
  #include <openssl/bn.h>
 
- BIGNUM *BN_mod_inverse(BIGNUM *r, BIGNUM *a, const BIGNUM *n, BN_CTX *ctx);
+ BIGNUM *BN_mod_inverse(BIGNUM *r, BIGNUM *a, const BIGNUM *n,
+           BN_CTX *ctx);
 
 =head1 DESCRIPTION
 
@@ -26,7 +27,7 @@ NULL on error. The error codes can be obtained by L<ERR_get_error(3)|ERR_get_err
 
 =head1 SEE ALSO
 
-L<bn(3)|bn(3)>, L<err(3)|err(3)>, L<BN_add(3)|BN_add(3)>
+L<bn(3)|bn(3)>, L<ERR_get_error(3)|ERR_get_error(3)>, L<BN_add(3)|BN_add(3)>
 
 =head1 HISTORY