[#BN_sqr] = BN_sqr :mrdocs: Square a BIGNUM: `r` = `a` * `a.` == Synopsis Declared in `<openssl/bn.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int BN_sqr( xref:BIGNUM.adoc[BIGNUM]* r, xref:BIGNUM.adoc[BIGNUM] const* a, xref:BN_CTX.adoc[BN_CTX]* ctx); ---- == Return Value 1 on success, or 0 on error. == Parameters [cols="1,4"] |=== | Name| Description | *r* | Destination square. | *a* | Value to square. | *ctx* | BN_CTX scratch space, or NULL. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#