Copy f into to with no padding (lengths must match) (deprecated).
Declared in <openssl/rsa.h>
[[deprecated]]
int
RSA_padding_add_none(
unsigned char* to,
int tlen,
unsigned char const* f,
int fl);
Deprecated. Use of this entity is allowed but discouraged.
1 on success, or 0 if lengths differ / on error.
| Name | Description |
|---|---|
| to | Destination block of length tlen. |
| tlen | RSA modulus size in bytes; must equal fl. |
| f | Message bytes. |
| fl | Length of f in bytes. |