RSA_padding_add_none

Copy f into to with no padding (lengths must match) (deprecated).

Synopsis

Declared in <openssl/rsa.h>

[[deprecated]]
int
RSA_padding_add_none(
    unsigned char* to,
    int tlen,
    unsigned char const* f,
    int fl);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Return Value

1 on success, or 0 if lengths differ / on error.

Parameters

NameDescription
toDestination block of length tlen.
tlenRSA modulus size in bytes; must equal fl.
fMessage bytes.
flLength of f in bytes.