Sign an ASN.1 OCTET STRING payload with RSA (deprecated).
Declared in <openssl/rsa.h>
[[deprecated]]
int
RSA_sign_ASN1_OCTET_STRING(
int type,
unsigned char const* m,
unsigned int m_length,
unsigned char* sigret,
unsigned int* siglen,
RSA* rsa);
Deprecated. Use of this entity is allowed but discouraged.
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| type | Unused legacy digest type argument. |
| m | OCTET STRING contents to sign. |
| m_length | Length of m in bytes. |
| sigret | Buffer of at least RSA_size(rsa) bytes receiving the signature. |
| siglen | Receives the signature length in bytes. |
| rsa | RSA private key. |