[#RSA_padding_add_none] = RSA_padding_add_none :mrdocs: Copy `f` into `to` with no padding (lengths must match) (deprecated). == Synopsis Declared in `<openssl/rsa.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int RSA_padding_add_none( unsigned char* to, int tlen, unsigned char const* f, int fl); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value 1 on success, or 0 if lengths differ / on error. == Parameters [cols="1,4"] |=== | 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#