[#RSA_padding_check_none] = RSA_padding_check_none :mrdocs: Verify "no padding" by copying `f` into `to` when lengths match (deprecated). == Synopsis Declared in `<openssl/rsa.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int RSA_padding_check_none( unsigned char* to, int tlen, unsigned char const* f, int fl, int rsa_len); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value Length of recovered data on success, or a negative value on error. == Parameters [cols="1,4"] |=== | Name| Description | *to* | Destination buffer of capacity `tlen.` | *tlen* | Capacity of `to` in bytes. | *f* | Encoded block bytes to check/copy. | *fl* | Length of `f` in bytes. | *rsa_len* | RSA modulus size in bytes (expected encoded length). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#