Multiply BIGNUM a by word w in place: a := a * w.

Synopsis

Declared in <openssl/bn.h>

int
BN_mul_word(
    BIGNUM* a,
    unsigned long w);

Return Value

1 on success, or 0 on error.

Parameters

Name

Description

a

Value to scale (updated in place).

w

Multiplier word.

Created with MrDocs