diff options
Diffstat (limited to 'src/lib/libcrypto/doc/RSA_sign_ASN1_OCTET_STRING.pod')
| -rw-r--r-- | src/lib/libcrypto/doc/RSA_sign_ASN1_OCTET_STRING.pod | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/src/lib/libcrypto/doc/RSA_sign_ASN1_OCTET_STRING.pod b/src/lib/libcrypto/doc/RSA_sign_ASN1_OCTET_STRING.pod deleted file mode 100644 index 664b46174b..0000000000 --- a/src/lib/libcrypto/doc/RSA_sign_ASN1_OCTET_STRING.pod +++ /dev/null | |||
| @@ -1,57 +0,0 @@ | |||
| 1 | =pod | ||
| 2 | |||
| 3 | =head1 NAME | ||
| 4 | |||
| 5 | RSA_sign_ASN1_OCTET_STRING, RSA_verify_ASN1_OCTET_STRING - RSA signatures | ||
| 6 | |||
| 7 | =head1 SYNOPSIS | ||
| 8 | |||
| 9 | #include <openssl/rsa.h> | ||
| 10 | |||
| 11 | int RSA_sign_ASN1_OCTET_STRING(int dummy, unsigned char *m, | ||
| 12 | unsigned int m_len, unsigned char *sigret, unsigned int *siglen, | ||
| 13 | RSA *rsa); | ||
| 14 | |||
| 15 | int RSA_verify_ASN1_OCTET_STRING(int dummy, unsigned char *m, | ||
| 16 | unsigned int m_len, unsigned char *sigbuf, unsigned int siglen, | ||
| 17 | RSA *rsa); | ||
| 18 | |||
| 19 | =head1 DESCRIPTION | ||
| 20 | |||
| 21 | RSA_sign_ASN1_OCTET_STRING() signs the octet string B<m> of size | ||
| 22 | B<m_len> using the private key B<rsa> represented in DER using PKCS #1 | ||
| 23 | padding. It stores the signature in B<sigret> and the signature size | ||
| 24 | in B<siglen>. B<sigret> must point to B<RSA_size(rsa)> bytes of | ||
| 25 | memory. | ||
| 26 | |||
| 27 | B<dummy> is ignored. | ||
| 28 | |||
| 29 | RSA_verify_ASN1_OCTET_STRING() verifies that the signature B<sigbuf> | ||
| 30 | of size B<siglen> is the DER representation of a given octet string | ||
| 31 | B<m> of size B<m_len>. B<dummy> is ignored. B<rsa> is the signer's | ||
| 32 | public key. | ||
| 33 | |||
| 34 | =head1 RETURN VALUES | ||
| 35 | |||
| 36 | RSA_sign_ASN1_OCTET_STRING() returns 1 on success, 0 otherwise. | ||
| 37 | RSA_verify_ASN1_OCTET_STRING() returns 1 on successful verification, 0 | ||
| 38 | otherwise. | ||
| 39 | |||
| 40 | The error codes can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>. | ||
| 41 | |||
| 42 | =head1 BUGS | ||
| 43 | |||
| 44 | These functions serve no recognizable purpose. | ||
| 45 | |||
| 46 | =head1 SEE ALSO | ||
| 47 | |||
| 48 | L<ERR_get_error(3)|ERR_get_error(3)>, L<objects(3)|objects(3)>, | ||
| 49 | L<rand(3)|rand(3)>, L<rsa(3)|rsa(3)>, L<RSA_sign(3)|RSA_sign(3)>, | ||
| 50 | L<RSA_verify(3)|RSA_verify(3)> | ||
| 51 | |||
| 52 | =head1 HISTORY | ||
| 53 | |||
| 54 | RSA_sign_ASN1_OCTET_STRING() and RSA_verify_ASN1_OCTET_STRING() were | ||
| 55 | added in SSLeay 0.8. | ||
| 56 | |||
| 57 | =cut | ||
