1BN_MOD_INVERSE(3) OpenSSL BN_MOD_INVERSE(3)
2
3
4
6 BN_mod_inverse - compute inverse modulo n
7
9 #include <openssl/bn.h>
10
11 BIGNUM *BN_mod_inverse(BIGNUM *r, BIGNUM *a, const BIGNUM *n,
12 BN_CTX *ctx);
13
15 BN_mod_inverse() computes the inverse of a modulo n places the result
16 in r ("(a*r)%n==1"). If r is NULL, a new BIGNUM is created.
17
18 ctx is a previously allocated BN_CTX used for temporary variables. r
19 may be the same BIGNUM as a or n.
20
22 BN_mod_inverse() returns the BIGNUM containing the inverse, and NULL on
23 error. The error codes can be obtained by ERR_get_error(3).
24
26 ERR_get_error(3), BN_add(3)
27
29 Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
30
31 Licensed under the OpenSSL license (the "License"). You may not use
32 this file except in compliance with the License. You can obtain a copy
33 in the file LICENSE in the source distribution or at
34 <https://www.openssl.org/source/license.html>.
35
36
37
381.1.1 2018-09-11 BN_MOD_INVERSE(3)