[#BN_rshift1] = BN_rshift1 :mrdocs: Compute r = a >> 1 (right shift by one bit). == Synopsis Declared in `<openssl/bn.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int BN_rshift1( xref:BIGNUM.adoc[BIGNUM]* r, xref:BIGNUM.adoc[BIGNUM] const* a); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *r* | Result BIGNUM. | *a* | Value to shift. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#