[#BN_GF2m_mod] = BN_GF2m_mod :mrdocs: Reduce `a` modulo irreducible polynomial `p` in GF(2ˆm): r = a mod p. == Synopsis Declared in `<openssl/bn.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int BN_GF2m_mod( xref:BIGNUM.adoc[BIGNUM]* r, xref:BIGNUM.adoc[BIGNUM] const* a, xref:BIGNUM.adoc[BIGNUM] const* p); ---- == Return Value 1 on success, or 0 on error. == Parameters [cols="1,4"] |=== | Name| Description | *r* | Destination residue. | *a* | Polynomial to reduce. | *p* | Irreducible modulus polynomial. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#