#include <stdio.h>
#include "cryptlib.h"
#include <openssl/bn.h>
#include <openssl/rsa.h>
#include <openssl/objects.h>
#include <openssl/x509.h>
Go to the source code of this file.
Functions | |
int | RSA_sign_ASN1_OCTET_STRING (int type, const unsigned char *m, unsigned int m_len, unsigned char *sigret, unsigned int *siglen, RSA *rsa) |
int | RSA_verify_ASN1_OCTET_STRING (int dtype, const unsigned char *m, unsigned int m_len, unsigned char *sigbuf, unsigned int siglen, RSA *rsa) |
int RSA_sign_ASN1_OCTET_STRING | ( | int | type, |
const unsigned char * | m, | ||
unsigned int | m_len, | ||
unsigned char * | sigret, | ||
unsigned int * | siglen, | ||
RSA * | rsa | ||
) |
Definition at line 66 of file rsa_saos.c.
int RSA_verify_ASN1_OCTET_STRING | ( | int | dtype, |
const unsigned char * | m, | ||
unsigned int | m_len, | ||
unsigned char * | sigbuf, | ||
unsigned int | siglen, | ||
RSA * | rsa | ||
) |
Definition at line 104 of file rsa_saos.c.