sync with 0.9.6f. prevents DoS attack and regen of manpages.

This commit is contained in:
itojun 2002-08-08 23:47:34 +00:00
parent f5e63fe4c2
commit 182c0b6e08
239 changed files with 837 additions and 755 deletions

View File

@ -2,11 +2,18 @@
OpenSSL CHANGES
_______________
Changes between 0.9.6e and 0.9.6f [8 Aug 2002]
*) Fix ASN1 checks. Check for overflow by comparing with LONG_MAX
and get fix the header length calculation.
[Florian Weimer <Weimer@CERT.Uni-Stuttgart.DE>,
Alon Kantor <alonk@checkpoint.com> (and others),
Steve Henson]
Alon Kantor <alonk@checkpoint.com> (and others),
Steve Henson]
*) Use proper error handling instead of 'assertions' in buffer
overflow checks added in 0.9.6e. This prevents DoS (the
assertions could call abort()).
[Arne Ansper <arne@ats.cyber.ee>, Bodo Moeller]
Changes between 0.9.6d and 0.9.6e [30 Jul 2002]

View File

@ -61,7 +61,7 @@ OpenSSL - Frequently Asked Questions
* Which is the current version of OpenSSL?
The current version is available from <URL: http://www.openssl.org>.
OpenSSL 0.9.6e was released on 30 May, 2002.
OpenSSL 0.9.6f was released on 8 August 2002.
In addition to the current stable release, you can also access daily
snapshots of the OpenSSL development version at <URL:

View File

@ -491,11 +491,3 @@ BOOL WINAPI DLLEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason,
#endif
#endif
void OpenSSLDie(const char *file,int line,const char *assertion)
{
fprintf(stderr,"%s(%d): OpenSSL internal error, assertion failed: %s\n",
file,line,assertion);
abort();
}

View File

@ -93,10 +93,6 @@ extern "C" {
#define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1)
#define HEX_SIZE(type) ((sizeof(type)*2)
/* die if we have to */
void OpenSSLDie(const char *file,int line,const char *assertion);
#define die(e) ((e) ? (void)0 : OpenSSLDie(__FILE__, __LINE__, #e))
#ifdef __cplusplus
}
#endif

View File

@ -518,7 +518,12 @@ static int get_server_hello(SSL *s)
}
s->s2->conn_id_length=s->s2->tmp.conn_id_length;
die(s->s2->conn_id_length <= sizeof s->s2->conn_id);
if (s->s2->conn_id_length > sizeof s->s2->conn_id)
{
ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_SERVER_HELLO, SSL_R_SSL2_CONNECTION_ID_TOO_LONG);
return -1;
}
memcpy(s->s2->conn_id,p,s->s2->tmp.conn_id_length);
return(1);
}
@ -620,7 +625,12 @@ static int client_master_key(SSL *s)
/* make key_arg data */
i=EVP_CIPHER_iv_length(c);
sess->key_arg_length=i;
die(i <= SSL_MAX_KEY_ARG_LENGTH);
if (i > SSL_MAX_KEY_ARG_LENGTH)
{
ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_CLIENT_MASTER_KEY, SSL_R_INTERNAL_ERROR);
return -1;
}
if (i > 0) RAND_pseudo_bytes(sess->key_arg,i);
/* make a master key */
@ -628,7 +638,12 @@ static int client_master_key(SSL *s)
sess->master_key_length=i;
if (i > 0)
{
die(i <= sizeof sess->master_key);
if (i > sizeof sess->master_key)
{
ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_CLIENT_MASTER_KEY, SSL_R_INTERNAL_ERROR);
return -1;
}
if (RAND_bytes(sess->master_key,i) <= 0)
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
@ -672,7 +687,12 @@ static int client_master_key(SSL *s)
d+=enc;
karg=sess->key_arg_length;
s2n(karg,p); /* key arg size */
die(karg <= sizeof sess->key_arg);
if (karg > sizeof sess->key_arg)
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_CLIENT_MASTER_KEY, SSL_R_INTERNAL_ERROR);
return -1;
}
memcpy(d,sess->key_arg,(unsigned int)karg);
d+=karg;
@ -693,7 +713,11 @@ static int client_finished(SSL *s)
{
p=(unsigned char *)s->init_buf->data;
*(p++)=SSL2_MT_CLIENT_FINISHED;
die(s->s2->conn_id_length <= sizeof s->s2->conn_id);
if (s->s2->conn_id_length > sizeof s->s2->conn_id)
{
SSLerr(SSL_F_CLIENT_FINISHED, SSL_R_INTERNAL_ERROR);
return -1;
}
memcpy(p,s->s2->conn_id,(unsigned int)s->s2->conn_id_length);
s->state=SSL2_ST_SEND_CLIENT_FINISHED_B;
@ -950,10 +974,9 @@ static int get_server_finished(SSL *s)
{
if (!(s->options & SSL_OP_MICROSOFT_SESS_ID_BUG))
{
die(s->session->session_id_length
<= sizeof s->session->session_id);
if (memcmp(buf,s->session->session_id,
(unsigned int)s->session->session_id_length) != 0)
if ((s->session->session_id_length > sizeof s->session->session_id)
|| (0 != memcmp(buf, s->session->session_id,
(unsigned int)s->session->session_id_length)))
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_SERVER_FINISHED,SSL_R_SSL_SESSION_ID_IS_DIFFERENT);

View File

@ -417,7 +417,7 @@ int ssl2_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p)
return(3);
}
void ssl2_generate_key_material(SSL *s)
int ssl2_generate_key_material(SSL *s)
{
unsigned int i;
MD5_CTX ctx;
@ -430,14 +430,24 @@ void ssl2_generate_key_material(SSL *s)
#endif
km=s->s2->key_material;
die(s->s2->key_material_length <= sizeof s->s2->key_material);
if (s->session->master_key_length < 0 || s->session->master_key_length > sizeof s->session->master_key)
{
SSLerr(SSL_F_SSL2_GENERATE_KEY_MATERIAL, SSL_R_INTERNAL_ERROR);
return 0;
}
for (i=0; i<s->s2->key_material_length; i+=MD5_DIGEST_LENGTH)
{
if (((km - s->s2->key_material) + MD5_DIGEST_LENGTH) > sizeof s->s2->key_material)
{
/* MD5_Final() below would write beyond buffer */
SSLerr(SSL_F_SSL2_GENERATE_KEY_MATERIAL, SSL_R_INTERNAL_ERROR);
return 0;
}
MD5_Init(&ctx);
die(s->session->master_key_length >= 0
&& s->session->master_key_length
< sizeof s->session->master_key);
MD5_Update(&ctx,s->session->master_key,s->session->master_key_length);
MD5_Update(&ctx,&c,1);
c++;
@ -446,6 +456,8 @@ void ssl2_generate_key_material(SSL *s)
MD5_Final(km,&ctx);
km+=MD5_DIGEST_LENGTH;
}
return 1;
}
void ssl2_return_error(SSL *s, int err)
@ -470,18 +482,20 @@ void ssl2_write_error(SSL *s)
buf[2]=(s->error_code)&0xff;
/* state=s->rwstate;*/
error=s->error;
error=s->error; /* number of bytes left to write */
s->error=0;
die(error >= 0 && error <= 3);
if (error < 0 || error > sizeof buf) /* can't happen */
return;
i=ssl2_write(s,&(buf[3-error]),error);
/* if (i == error) s->rwstate=state; */
if (i < 0)
s->error=error;
else if (i != s->error)
s->error=error-i;
/* else
s->error=0; */
}
int ssl2_shutdown(SSL *s)

View File

@ -399,8 +399,7 @@ static int get_client_master_key(SSL *s)
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_READ_WRONG_PACKET_TYPE);
}
else
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,
SSL_R_PEER_ERROR);
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_PEER_ERROR);
return(-1);
}
@ -408,8 +407,7 @@ static int get_client_master_key(SSL *s)
if (cp == NULL)
{
ssl2_return_error(s,SSL2_PE_NO_CIPHER);
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,
SSL_R_NO_CIPHER_MATCH);
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_NO_CIPHER_MATCH);
return(-1);
}
s->session->cipher= cp;
@ -420,8 +418,8 @@ static int get_client_master_key(SSL *s)
n2s(p,i); s->session->key_arg_length=i;
if(s->session->key_arg_length > SSL_MAX_KEY_ARG_LENGTH)
{
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,
SSL_R_KEY_ARG_TOO_LONG);
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_KEY_ARG_TOO_LONG);
return -1;
}
s->state=SSL2_ST_GET_CLIENT_MASTER_KEY_B;
@ -429,11 +427,17 @@ static int get_client_master_key(SSL *s)
/* SSL2_ST_GET_CLIENT_MASTER_KEY_B */
p=(unsigned char *)s->init_buf->data;
die(s->init_buf->length >= SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER);
if (s->init_buf->length < SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER)
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_INTERNAL_ERROR);
return -1;
}
keya=s->session->key_arg_length;
len = 10 + (unsigned long)s->s2->tmp.clear + (unsigned long)s->s2->tmp.enc + (unsigned long)keya;
if (len > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER)
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_MESSAGE_TOO_LONG);
return -1;
}
@ -510,7 +514,13 @@ static int get_client_master_key(SSL *s)
#endif
if (is_export) i+=s->s2->tmp.clear;
die(i <= SSL_MAX_MASTER_KEY_LENGTH);
if (i > SSL_MAX_MASTER_KEY_LENGTH)
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_INTERNAL_ERROR);
return -1;
}
s->session->master_key_length=i;
memcpy(s->session->master_key,p,(unsigned int)i);
return(1);
@ -560,6 +570,7 @@ static int get_client_hello(SSL *s)
if ( (i < SSL2_MIN_CHALLENGE_LENGTH) ||
(i > SSL2_MAX_CHALLENGE_LENGTH))
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_CLIENT_HELLO,SSL_R_INVALID_CHALLENGE_LENGTH);
return(-1);
}
@ -571,6 +582,7 @@ static int get_client_hello(SSL *s)
len = 9 + (unsigned long)s->s2->tmp.cipher_spec_length + (unsigned long)s->s2->challenge_length + (unsigned long)s->s2->tmp.session_id_length;
if (len > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER)
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_CLIENT_HELLO,SSL_R_MESSAGE_TOO_LONG);
return -1;
}
@ -658,7 +670,12 @@ static int get_client_hello(SSL *s)
p+=s->s2->tmp.session_id_length;
/* challenge */
die(s->s2->challenge_length <= sizeof s->s2->challenge);
if (s->s2->challenge_length > sizeof s->s2->challenge)
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_INTERNAL_ERROR);
return -1;
}
memcpy(s->s2->challenge,p,(unsigned int)s->s2->challenge_length);
return(1);
mem_err:
@ -810,7 +827,12 @@ static int get_client_finished(SSL *s)
}
/* SSL2_ST_GET_CLIENT_FINISHED_B */
die(s->s2->conn_id_length <= sizeof s->s2->conn_id);
if (s->s2->conn_id_length > sizeof s->s2->conn_id)
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
SSLerr(SSL_F_GET_CLIENT_FINISHED, SSL_R_INTERNAL_ERROR);
return -1;
}
len = 1 + (unsigned long)s->s2->conn_id_length;
n = (int)len - s->init_num;
i = ssl2_read(s,(char *)&(p[s->init_num]),n);
@ -836,7 +858,11 @@ static int server_verify(SSL *s)
{
p=(unsigned char *)s->init_buf->data;
*(p++)=SSL2_MT_SERVER_VERIFY;
die(s->s2->challenge_length <= sizeof s->s2->challenge);
if (s->s2->challenge_length > sizeof s->s2->challenge)
{
SSLerr(SSL_F_SERVER_VERIFY, SSL_R_INTERNAL_ERROR);
return -1;
}
memcpy(p,s->s2->challenge,(unsigned int)s->s2->challenge_length);
/* p+=s->s2->challenge_length; */
@ -856,10 +882,12 @@ static int server_finish(SSL *s)
p=(unsigned char *)s->init_buf->data;
*(p++)=SSL2_MT_SERVER_FINISHED;
die(s->session->session_id_length
<= sizeof s->session->session_id);
memcpy(p,s->session->session_id,
(unsigned int)s->session->session_id_length);
if (s->session->session_id_length > sizeof s->session->session_id)
{
SSLerr(SSL_F_SERVER_FINISH, SSL_R_INTERNAL_ERROR);
return -1;
}
memcpy(p,s->session->session_id, (unsigned int)s->session->session_id_length);
/* p+=s->session->session_id_length; */
s->state=SSL2_ST_SEND_SERVER_FINISHED_B;

View File

@ -546,7 +546,11 @@ static int ssl3_client_hello(SSL *s)
*(p++)=i;
if (i != 0)
{
die(i <= sizeof s->session->session_id);
if (i > sizeof s->session->session_id)
{
SSLerr(SSL_F_SSL3_CLIENT_HELLO, SSL_R_INTERNAL_ERROR);
goto err;
}
memcpy(p,s->session->session_id,i);
p+=i;
}

View File

@ -949,7 +949,11 @@ static int ssl3_send_server_hello(SSL *s)
s->session->session_id_length=0;
sl=s->session->session_id_length;
die(sl <= sizeof s->session->session_id);
if (sl > sizeof s->session->session_id)
{
SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO, SSL_R_INTERNAL_ERROR);
return -1;
}
*(p++)=sl;
memcpy(p,s->session->session_id,sl);
p+=sl;

View File

@ -1233,6 +1233,7 @@ void ERR_load_SSL_strings(void);
/* Function codes. */
#define SSL_F_CLIENT_CERTIFICATE 100
#define SSL_F_CLIENT_FINISHED 238
#define SSL_F_CLIENT_HELLO 101
#define SSL_F_CLIENT_MASTER_KEY 102
#define SSL_F_D2I_SSL_SESSION 103
@ -1246,7 +1247,9 @@ void ERR_load_SSL_strings(void);
#define SSL_F_I2D_SSL_SESSION 111
#define SSL_F_READ_N 112
#define SSL_F_REQUEST_CERTIFICATE 113
#define SSL_F_SERVER_FINISH 239
#define SSL_F_SERVER_HELLO 114
#define SSL_F_SERVER_VERIFY 240
#define SSL_F_SSL23_ACCEPT 115
#define SSL_F_SSL23_CLIENT_HELLO 116
#define SSL_F_SSL23_CONNECT 117
@ -1258,6 +1261,7 @@ void ERR_load_SSL_strings(void);
#define SSL_F_SSL2_ACCEPT 122
#define SSL_F_SSL2_CONNECT 123
#define SSL_F_SSL2_ENC_INIT 124
#define SSL_F_SSL2_GENERATE_KEY_MATERIAL 241
#define SSL_F_SSL2_PEEK 234
#define SSL_F_SSL2_READ 125
#define SSL_F_SSL2_READ_INTERNAL 236
@ -1293,6 +1297,7 @@ void ERR_load_SSL_strings(void);
#define SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE 152
#define SSL_F_SSL3_SEND_CLIENT_VERIFY 153
#define SSL_F_SSL3_SEND_SERVER_CERTIFICATE 154
#define SSL_F_SSL3_SEND_SERVER_HELLO 242
#define SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE 155
#define SSL_F_SSL3_SETUP_BUFFERS 156
#define SSL_F_SSL3_SETUP_KEY_BLOCK 157
@ -1507,6 +1512,7 @@ void ERR_load_SSL_strings(void);
#define SSL_R_SHORT_READ 219
#define SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE 220
#define SSL_R_SSL23_DOING_SESSION_ID_REUSE 221
#define SSL_R_SSL2_CONNECTION_ID_TOO_LONG 1114
#define SSL_R_SSL3_SESSION_ID_TOO_LONG 1113
#define SSL_R_SSL3_SESSION_ID_TOO_SHORT 222
#define SSL_R_SSLV3_ALERT_BAD_CERTIFICATE 1042

View File

@ -273,10 +273,11 @@ SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, unsigned char **pp,
i=SSL2_MAX_SSL_SESSION_ID_LENGTH;
if (os.length > i)
os.length=i;
os.length = i;
if (os.length > sizeof ret->session_id) /* can't happen */
os.length = sizeof ret->session_id;
ret->session_id_length=os.length;
die(os.length <= sizeof ret->session_id);
memcpy(ret->session_id,os.data,os.length);
M_ASN1_D2I_get(osp,d2i_ASN1_OCTET_STRING);

View File

@ -67,6 +67,7 @@
static ERR_STRING_DATA SSL_str_functs[]=
{
{ERR_PACK(0,SSL_F_CLIENT_CERTIFICATE,0), "CLIENT_CERTIFICATE"},
{ERR_PACK(0,SSL_F_CLIENT_FINISHED,0), "CLIENT_FINISHED"},
{ERR_PACK(0,SSL_F_CLIENT_HELLO,0), "CLIENT_HELLO"},
{ERR_PACK(0,SSL_F_CLIENT_MASTER_KEY,0), "CLIENT_MASTER_KEY"},
{ERR_PACK(0,SSL_F_D2I_SSL_SESSION,0), "d2i_SSL_SESSION"},
@ -80,7 +81,9 @@ static ERR_STRING_DATA SSL_str_functs[]=
{ERR_PACK(0,SSL_F_I2D_SSL_SESSION,0), "i2d_SSL_SESSION"},
{ERR_PACK(0,SSL_F_READ_N,0), "READ_N"},
{ERR_PACK(0,SSL_F_REQUEST_CERTIFICATE,0), "REQUEST_CERTIFICATE"},
{ERR_PACK(0,SSL_F_SERVER_FINISH,0), "SERVER_FINISH"},
{ERR_PACK(0,SSL_F_SERVER_HELLO,0), "SERVER_HELLO"},
{ERR_PACK(0,SSL_F_SERVER_VERIFY,0), "SERVER_VERIFY"},
{ERR_PACK(0,SSL_F_SSL23_ACCEPT,0), "SSL23_ACCEPT"},
{ERR_PACK(0,SSL_F_SSL23_CLIENT_HELLO,0), "SSL23_CLIENT_HELLO"},
{ERR_PACK(0,SSL_F_SSL23_CONNECT,0), "SSL23_CONNECT"},
@ -92,6 +95,7 @@ static ERR_STRING_DATA SSL_str_functs[]=
{ERR_PACK(0,SSL_F_SSL2_ACCEPT,0), "SSL2_ACCEPT"},
{ERR_PACK(0,SSL_F_SSL2_CONNECT,0), "SSL2_CONNECT"},
{ERR_PACK(0,SSL_F_SSL2_ENC_INIT,0), "SSL2_ENC_INIT"},
{ERR_PACK(0,SSL_F_SSL2_GENERATE_KEY_MATERIAL,0), "SSL2_GENERATE_KEY_MATERIAL"},
{ERR_PACK(0,SSL_F_SSL2_PEEK,0), "SSL2_PEEK"},
{ERR_PACK(0,SSL_F_SSL2_READ,0), "SSL2_READ"},
{ERR_PACK(0,SSL_F_SSL2_READ_INTERNAL,0), "SSL2_READ_INTERNAL"},
@ -127,6 +131,7 @@ static ERR_STRING_DATA SSL_str_functs[]=
{ERR_PACK(0,SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,0), "SSL3_SEND_CLIENT_KEY_EXCHANGE"},
{ERR_PACK(0,SSL_F_SSL3_SEND_CLIENT_VERIFY,0), "SSL3_SEND_CLIENT_VERIFY"},
{ERR_PACK(0,SSL_F_SSL3_SEND_SERVER_CERTIFICATE,0), "SSL3_SEND_SERVER_CERTIFICATE"},
{ERR_PACK(0,SSL_F_SSL3_SEND_SERVER_HELLO,0), "SSL3_SEND_SERVER_HELLO"},
{ERR_PACK(0,SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,0), "SSL3_SEND_SERVER_KEY_EXCHANGE"},
{ERR_PACK(0,SSL_F_SSL3_SETUP_BUFFERS,0), "SSL3_SETUP_BUFFERS"},
{ERR_PACK(0,SSL_F_SSL3_SETUP_KEY_BLOCK,0), "SSL3_SETUP_KEY_BLOCK"},
@ -344,6 +349,7 @@ static ERR_STRING_DATA SSL_str_reasons[]=
{SSL_R_SHORT_READ ,"short read"},
{SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE,"signature for non signing certificate"},
{SSL_R_SSL23_DOING_SESSION_ID_REUSE ,"ssl23 doing session id reuse"},
{SSL_R_SSL2_CONNECTION_ID_TOO_LONG ,"ssl2 connection id too long"},
{SSL_R_SSL3_SESSION_ID_TOO_LONG ,"ssl3 session id too long"},
{SSL_R_SSL3_SESSION_ID_TOO_SHORT ,"ssl3 session id too short"},
{SSL_R_SSLV3_ALERT_BAD_CERTIFICATE ,"sslv3 alert bad certificate"},

View File

@ -492,7 +492,7 @@ STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s);
int ssl_verify_alarm_type(long type);
int ssl2_enc_init(SSL *s, int client);
void ssl2_generate_key_material(SSL *s);
int ssl2_generate_key_material(SSL *s);
void ssl2_enc(SSL *s,int send_data);
void ssl2_mac(SSL *s,unsigned char *mac,int send_data);
SSL_CIPHER *ssl2_get_cipher_by_char(const unsigned char *p);

View File

@ -200,7 +200,12 @@ int ssl_get_new_session(SSL *s, int session)
ss->session_id_length=0;
}
die(s->sid_ctx_length <= sizeof ss->sid_ctx);
if (s->sid_ctx_length > sizeof ss->sid_ctx)
{
SSLerr(SSL_F_SSL_GET_NEW_SESSION, SSL_R_INTERNAL_ERROR);
SSL_SESSION_free(ss);
return 0;
}
memcpy(ss->sid_ctx,s->sid_ctx,s->sid_ctx_length);
ss->sid_ctx_length=s->sid_ctx_length;
s->session=ss;

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_ctrl.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_ctrl.3,v 1.5 2002/08/08 23:47:39 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:12 2002
.\" Fri Aug 9 08:27:26 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_ctrl 3"
.TH BIO_ctrl 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_ctrl 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_ctrl, BIO_callback_ctrl, BIO_ptr_ctrl, BIO_int_ctrl, BIO_reset,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_f_base64.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_f_base64.3,v 1.5 2002/08/08 23:47:39 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:12 2002
.\" Fri Aug 9 08:27:27 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_f_base64 3"
.TH BIO_f_base64 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_f_base64 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_f_base64 \- base64 \s-1BIO\s0 filter

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_f_buffer.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_f_buffer.3,v 1.5 2002/08/08 23:47:39 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:13 2002
.\" Fri Aug 9 08:27:28 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_f_buffer 3"
.TH BIO_f_buffer 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_f_buffer 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_f_buffer \- buffering \s-1BIO\s0

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_f_cipher.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_f_cipher.3,v 1.5 2002/08/08 23:47:39 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:13 2002
.\" Fri Aug 9 08:27:28 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_f_cipher 3"
.TH BIO_f_cipher 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_f_cipher 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_f_cipher, BIO_set_cipher, BIO_get_cipher_status, BIO_get_cipher_ctx \- cipher \s-1BIO\s0 filter

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_f_md.3,v 1.5 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_f_md.3,v 1.6 2002/08/08 23:47:39 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:14 2002
.\" Fri Aug 9 08:27:29 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_f_md 3"
.TH BIO_f_md 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_f_md 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_f_md, BIO_set_md, BIO_get_md, BIO_get_md_ctx \- message digest \s-1BIO\s0 filter

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_f_null.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_f_null.3,v 1.5 2002/08/08 23:47:40 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:14 2002
.\" Fri Aug 9 08:27:30 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_f_null 3"
.TH BIO_f_null 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_f_null 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_f_null \- null filter

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_f_ssl.3,v 1.5 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_f_ssl.3,v 1.6 2002/08/08 23:47:40 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:14 2002
.\" Fri Aug 9 08:27:30 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_f_ssl 3"
.TH BIO_f_ssl 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_f_ssl 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_f_ssl, BIO_set_ssl, BIO_get_ssl, BIO_set_ssl_mode, BIO_set_ssl_renegotiate_bytes,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_find_type.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_find_type.3,v 1.5 2002/08/08 23:47:40 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:15 2002
.\" Fri Aug 9 08:27:31 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_find_type 3"
.TH BIO_find_type 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_find_type 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_find_type, BIO_next \- \s-1BIO\s0 chain traversal

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_new.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_new.3,v 1.5 2002/08/08 23:47:40 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:15 2002
.\" Fri Aug 9 08:27:31 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_new 3"
.TH BIO_new 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_new 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_new, BIO_set, BIO_free, BIO_vfree, BIO_free_all \- \s-1BIO\s0 allocation and freeing functions

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_new_bio_pair.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_new_bio_pair.3,v 1.5 2002/08/08 23:47:40 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:15 2002
.\" Fri Aug 9 08:27:31 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_new_bio_pair 3"
.TH BIO_new_bio_pair 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_new_bio_pair 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_new_bio_pair \- create a new \s-1BIO\s0 pair

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_push.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_push.3,v 1.5 2002/08/08 23:47:40 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:16 2002
.\" Fri Aug 9 08:27:32 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_push 3"
.TH BIO_push 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_push 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_push, BIO_pop \- add and remove BIOs from a chain.

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_read.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_read.3,v 1.5 2002/08/08 23:47:41 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:16 2002
.\" Fri Aug 9 08:27:32 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_read 3"
.TH BIO_read 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_read 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_read, BIO_write, BIO_gets, BIO_puts \- \s-1BIO\s0 I/O functions

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_s_accept.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_s_accept.3,v 1.5 2002/08/08 23:47:41 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:16 2002
.\" Fri Aug 9 08:27:33 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_s_accept 3"
.TH BIO_s_accept 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_s_accept 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_s_accept, BIO_set_nbio, BIO_set_accept_port, BIO_get_accept_port,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_s_bio.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_s_bio.3,v 1.5 2002/08/08 23:47:41 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:17 2002
.\" Fri Aug 9 08:27:34 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_s_bio 3"
.TH BIO_s_bio 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_s_bio 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_s_bio, BIO_make_bio_pair, BIO_destroy_bio_pair, BIO_shutdown_wr,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_s_connect.3,v 1.4 2002/07/31 01:45:22 itojun Exp $
.\" $NetBSD: BIO_s_connect.3,v 1.5 2002/08/08 23:47:41 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:17 2002
.\" Fri Aug 9 08:27:34 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_s_connect 3"
.TH BIO_s_connect 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_s_connect 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_s_connect, BIO_set_conn_hostname, BIO_set_conn_port,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_s_fd.3,v 1.4 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BIO_s_fd.3,v 1.5 2002/08/08 23:47:41 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:18 2002
.\" Fri Aug 9 08:27:35 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_s_fd 3"
.TH BIO_s_fd 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_s_fd 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_s_fd, BIO_set_fd, BIO_get_fd, BIO_new_fd \- file descriptor \s-1BIO\s0

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_s_file.3,v 1.4 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BIO_s_file.3,v 1.5 2002/08/08 23:47:42 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:18 2002
.\" Fri Aug 9 08:27:36 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_s_file 3"
.TH BIO_s_file 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_s_file 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_s_file, BIO_new_file, BIO_new_fp, BIO_set_fp, BIO_get_fp,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_s_mem.3,v 1.5 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BIO_s_mem.3,v 1.6 2002/08/08 23:47:42 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:18 2002
.\" Fri Aug 9 08:27:36 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_s_mem 3"
.TH BIO_s_mem 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_s_mem 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_s_mem, BIO_set_mem_eof_return, BIO_get_mem_data, BIO_set_mem_buf,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_s_null.3,v 1.4 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BIO_s_null.3,v 1.5 2002/08/08 23:47:42 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:19 2002
.\" Fri Aug 9 08:27:36 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_s_null 3"
.TH BIO_s_null 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_s_null 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_s_null \- null data sink

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_s_socket.3,v 1.4 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BIO_s_socket.3,v 1.5 2002/08/08 23:47:42 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:19 2002
.\" Fri Aug 9 08:27:37 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_s_socket 3"
.TH BIO_s_socket 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_s_socket 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_s_socket, BIO_new_socket \- socket \s-1BIO\s0

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_set_callback.3,v 1.4 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BIO_set_callback.3,v 1.5 2002/08/08 23:47:43 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:20 2002
.\" Fri Aug 9 08:27:38 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_set_callback 3"
.TH BIO_set_callback 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_set_callback 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_set_callback, BIO_get_callback, BIO_set_callback_arg, BIO_get_callback_arg,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BIO_should_retry.3,v 1.5 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BIO_should_retry.3,v 1.6 2002/08/08 23:47:43 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:20 2002
.\" Fri Aug 9 08:27:38 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BIO_should_retry 3"
.TH BIO_should_retry 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BIO_should_retry 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BIO_should_retry, BIO_should_read, BIO_should_write,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_CTX_new.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_CTX_new.3,v 1.9 2002/08/08 23:47:43 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:21 2002
.\" Fri Aug 9 08:27:39 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_CTX_new 3"
.TH BN_CTX_new 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_CTX_new 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_CTX_new, BN_CTX_init, BN_CTX_free \- allocate and free \s-1BN_CTX\s0 structures

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_CTX_start.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_CTX_start.3,v 1.9 2002/08/08 23:47:43 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:21 2002
.\" Fri Aug 9 08:27:39 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_CTX_start 3"
.TH BN_CTX_start 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BN_CTX_start 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BN_CTX_start, BN_CTX_get, BN_CTX_end \- use temporary \s-1BIGNUM\s0 variables

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_add.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_add.3,v 1.9 2002/08/08 23:47:43 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:21 2002
.\" Fri Aug 9 08:27:40 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_add 3"
.TH BN_add 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_add 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_add, BN_sub, BN_mul, BN_div, BN_sqr, BN_mod, BN_mod_mul, BN_exp,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_add_word.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_add_word.3,v 1.9 2002/08/08 23:47:44 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:21 2002
.\" Fri Aug 9 08:27:40 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_add_word 3"
.TH BN_add_word 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_add_word 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_add_word, BN_sub_word, BN_mul_word, BN_div_word, BN_mod_word \- arithmetic

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_bn2bin.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_bn2bin.3,v 1.9 2002/08/08 23:47:44 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:22 2002
.\" Fri Aug 9 08:27:41 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_bn2bin 3"
.TH BN_bn2bin 3 "0.9.6e" "2002-06-10" "OpenSSL"
.TH BN_bn2bin 3 "0.9.6f" "2002-06-10" "OpenSSL"
.UC
.SH "NAME"
BN_bn2bin, BN_bin2bn, BN_bn2hex, BN_bn2dec, BN_hex2bn, BN_dec2bn,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_cmp.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_cmp.3,v 1.9 2002/08/08 23:47:44 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:22 2002
.\" Fri Aug 9 08:27:42 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_cmp 3"
.TH BN_cmp 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_cmp 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_cmp, BN_ucmp, BN_is_zero, BN_is_one, BN_is_word, BN_is_odd \- \s-1BIGNUM\s0 comparison and test functions

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_copy.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_copy.3,v 1.9 2002/08/08 23:47:44 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:22 2002
.\" Fri Aug 9 08:27:42 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_copy 3"
.TH BN_copy 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_copy 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_copy, BN_dup \- copy BIGNUMs

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_generate_prime.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_generate_prime.3,v 1.9 2002/08/08 23:47:44 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:23 2002
.\" Fri Aug 9 08:27:43 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_generate_prime 3"
.TH BN_generate_prime 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_generate_prime 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_generate_prime, BN_is_prime, BN_is_prime_fasttest \- generate primes and test for primality

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_mod_inverse.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_mod_inverse.3,v 1.9 2002/08/08 23:47:44 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:23 2002
.\" Fri Aug 9 08:27:44 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_mod_inverse 3"
.TH BN_mod_inverse 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_mod_inverse 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_mod_inverse \- compute inverse modulo n

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_mod_mul_montgomery.3,v 1.8 2002/07/31 01:45:23 itojun Exp $
.\" $NetBSD: BN_mod_mul_montgomery.3,v 1.9 2002/08/08 23:47:45 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:24 2002
.\" Fri Aug 9 08:27:45 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_mod_mul_montgomery 3"
.TH BN_mod_mul_montgomery 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BN_mod_mul_montgomery 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BN_mod_mul_montgomery, BN_MONT_CTX_new, BN_MONT_CTX_init,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_mod_mul_reciprocal.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: BN_mod_mul_reciprocal.3,v 1.9 2002/08/08 23:47:45 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:24 2002
.\" Fri Aug 9 08:27:45 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_mod_mul_reciprocal 3"
.TH BN_mod_mul_reciprocal 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BN_mod_mul_reciprocal 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BN_mod_mul_reciprocal, BN_div_recp, BN_RECP_CTX_new, BN_RECP_CTX_init,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_new.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: BN_new.3,v 1.9 2002/08/08 23:47:45 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:24 2002
.\" Fri Aug 9 08:27:46 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_new 3"
.TH BN_new 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_new 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_new, BN_init, BN_clear, BN_free, BN_clear_free \- allocate and free BIGNUMs

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_num_bytes.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: BN_num_bytes.3,v 1.9 2002/08/08 23:47:45 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:25 2002
.\" Fri Aug 9 08:27:46 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_num_bytes 3"
.TH BN_num_bytes 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_num_bytes 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_num_bits, BN_num_bytes, BN_num_bits_word \- get \s-1BIGNUM\s0 size

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_rand.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: BN_rand.3,v 1.9 2002/08/08 23:47:45 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:25 2002
.\" Fri Aug 9 08:27:47 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_rand 3"
.TH BN_rand 3 "0.9.6e" "2002-07-31" "OpenSSL"
.TH BN_rand 3 "0.9.6f" "2002-07-31" "OpenSSL"
.UC
.SH "NAME"
BN_rand, BN_pseudo_rand \- generate pseudo-random number

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_set_bit.3,v 1.9 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: BN_set_bit.3,v 1.10 2002/08/08 23:47:45 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:25 2002
.\" Fri Aug 9 08:27:47 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_set_bit 3"
.TH BN_set_bit 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH BN_set_bit 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
BN_set_bit, BN_clear_bit, BN_is_bit_set, BN_mask_bits, BN_lshift,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: BN_zero.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: BN_zero.3,v 1.9 2002/08/08 23:47:46 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:26 2002
.\" Fri Aug 9 08:27:48 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "BN_zero 3"
.TH BN_zero 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH BN_zero 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
BN_zero, BN_one, BN_value_one, BN_set_word, BN_get_word \- \s-1BIGNUM\s0 assignment

View File

@ -1,7 +1,7 @@
.\" $NetBSD: CRYPTO_set_ex_data.3,v 1.7 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: CRYPTO_set_ex_data.3,v 1.8 2002/08/08 23:47:46 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:26 2002
.\" Fri Aug 9 08:27:48 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "CRYPTO_set_ex_data 3"
.TH CRYPTO_set_ex_data 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH CRYPTO_set_ex_data 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
CRYPTO_set_ex_data, CRYPTO_get_ex_data \- internal application specific data functions

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DH_generate_key.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DH_generate_key.3,v 1.9 2002/08/08 23:47:46 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:26 2002
.\" Fri Aug 9 08:27:49 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DH_generate_key 3"
.TH DH_generate_key 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DH_generate_key 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DH_generate_key, DH_compute_key \- perform Diffie-Hellman key exchange

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DH_generate_parameters.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DH_generate_parameters.3,v 1.9 2002/08/08 23:47:46 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:27 2002
.\" Fri Aug 9 08:27:50 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DH_generate_parameters 3"
.TH DH_generate_parameters 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DH_generate_parameters 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DH_generate_parameters, DH_check \- generate and check Diffie-Hellman parameters

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DH_get_ex_new_index.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DH_get_ex_new_index.3,v 1.9 2002/08/08 23:47:46 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:27 2002
.\" Fri Aug 9 08:27:51 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DH_get_ex_new_index 3"
.TH DH_get_ex_new_index 3 "0.9.6e" "2002-07-31" "OpenSSL"
.TH DH_get_ex_new_index 3 "0.9.6f" "2002-07-31" "OpenSSL"
.UC
.SH "NAME"
DH_get_ex_new_index, DH_set_ex_data, DH_get_ex_data \- add application specific data to \s-1DH\s0 structures

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DH_new.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DH_new.3,v 1.9 2002/08/08 23:47:46 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:27 2002
.\" Fri Aug 9 08:27:51 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DH_new 3"
.TH DH_new 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DH_new 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DH_new, DH_free \- allocate and free \s-1DH\s0 objects

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DH_set_method.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DH_set_method.3,v 1.9 2002/08/08 23:47:47 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:28 2002
.\" Fri Aug 9 08:27:52 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DH_set_method 3"
.TH DH_set_method 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH DH_set_method 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
DH_set_default_method, DH_get_default_method, DH_set_method,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DH_size.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DH_size.3,v 1.9 2002/08/08 23:47:47 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:28 2002
.\" Fri Aug 9 08:27:52 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DH_size 3"
.TH DH_size 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DH_size 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DH_size \- get Diffie-Hellman prime size

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_SIG_new.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_SIG_new.3,v 1.9 2002/08/08 23:47:47 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:28 2002
.\" Fri Aug 9 08:27:53 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_SIG_new 3"
.TH DSA_SIG_new 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DSA_SIG_new 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DSA_SIG_new, DSA_SIG_free \- allocate and free \s-1DSA\s0 signature objects

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_do_sign.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_do_sign.3,v 1.9 2002/08/08 23:47:47 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:29 2002
.\" Fri Aug 9 08:27:53 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_do_sign 3"
.TH DSA_do_sign 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DSA_do_sign 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DSA_do_sign, DSA_do_verify \- raw \s-1DSA\s0 signature operations

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_dup_DH.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_dup_DH.3,v 1.9 2002/08/08 23:47:47 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:29 2002
.\" Fri Aug 9 08:27:54 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_dup_DH 3"
.TH DSA_dup_DH 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DSA_dup_DH 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DSA_dup_DH \- create a \s-1DH\s0 structure out of \s-1DSA\s0 structure

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_generate_key.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_generate_key.3,v 1.9 2002/08/08 23:47:47 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:30 2002
.\" Fri Aug 9 08:27:54 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_generate_key 3"
.TH DSA_generate_key 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DSA_generate_key 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DSA_generate_key \- generate \s-1DSA\s0 key pair

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_generate_parameters.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_generate_parameters.3,v 1.9 2002/08/08 23:47:48 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:30 2002
.\" Fri Aug 9 08:27:55 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_generate_parameters 3"
.TH DSA_generate_parameters 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DSA_generate_parameters 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DSA_generate_parameters \- generate \s-1DSA\s0 parameters

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_get_ex_new_index.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_get_ex_new_index.3,v 1.9 2002/08/08 23:47:48 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:30 2002
.\" Fri Aug 9 08:27:56 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_get_ex_new_index 3"
.TH DSA_get_ex_new_index 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DSA_get_ex_new_index 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DSA_get_ex_new_index, DSA_set_ex_data, DSA_get_ex_data \- add application specific data to \s-1DSA\s0 structures

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_new.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_new.3,v 1.9 2002/08/08 23:47:48 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:31 2002
.\" Fri Aug 9 08:27:56 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_new 3"
.TH DSA_new 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DSA_new 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DSA_new, DSA_free \- allocate and free \s-1DSA\s0 objects

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_set_method.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_set_method.3,v 1.9 2002/08/08 23:47:48 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:31 2002
.\" Fri Aug 9 08:27:57 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_set_method 3"
.TH DSA_set_method 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH DSA_set_method 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
DSA_set_default_method, DSA_get_default_method, DSA_set_method,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_sign.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_sign.3,v 1.9 2002/08/08 23:47:48 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:31 2002
.\" Fri Aug 9 08:27:57 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_sign 3"
.TH DSA_sign 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DSA_sign 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DSA_sign, DSA_sign_setup, DSA_verify \- \s-1DSA\s0 signatures

View File

@ -1,7 +1,7 @@
.\" $NetBSD: DSA_size.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: DSA_size.3,v 1.9 2002/08/08 23:47:48 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:32 2002
.\" Fri Aug 9 08:27:58 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "DSA_size 3"
.TH DSA_size 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH DSA_size 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
DSA_size \- get \s-1DSA\s0 signature size

View File

@ -1,7 +1,7 @@
.\" $NetBSD: ERR_GET_LIB.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: ERR_GET_LIB.3,v 1.9 2002/08/08 23:47:49 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:32 2002
.\" Fri Aug 9 08:27:58 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "ERR_GET_LIB 3"
.TH ERR_GET_LIB 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH ERR_GET_LIB 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
\&\s-1ERR_GET_LIB\s0, \s-1ERR_GET_FUNC\s0, \s-1ERR_GET_REASON\s0 \- get library, function and

View File

@ -1,7 +1,7 @@
.\" $NetBSD: ERR_clear_error.3,v 1.8 2002/07/31 01:45:24 itojun Exp $
.\" $NetBSD: ERR_clear_error.3,v 1.9 2002/08/08 23:47:49 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:33 2002
.\" Fri Aug 9 08:27:59 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "ERR_clear_error 3"
.TH ERR_clear_error 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH ERR_clear_error 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
ERR_clear_error \- clear the error queue

View File

@ -1,7 +1,7 @@
.\" $NetBSD: ERR_error_string.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: ERR_error_string.3,v 1.9 2002/08/08 23:47:49 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:33 2002
.\" Fri Aug 9 08:28:00 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "ERR_error_string 3"
.TH ERR_error_string 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH ERR_error_string 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
ERR_error_string, ERR_error_string_n, ERR_lib_error_string,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: ERR_get_error.3,v 1.9 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: ERR_get_error.3,v 1.10 2002/08/08 23:47:49 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:33 2002
.\" Fri Aug 9 08:28:01 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "ERR_get_error 3"
.TH ERR_get_error 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH ERR_get_error 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
ERR_get_error, ERR_peek_error, ERR_get_error_line, ERR_peek_error_line,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: ERR_load_crypto_strings.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: ERR_load_crypto_strings.3,v 1.9 2002/08/08 23:47:49 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:34 2002
.\" Fri Aug 9 08:28:02 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "ERR_load_crypto_strings 3"
.TH ERR_load_crypto_strings 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH ERR_load_crypto_strings 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
ERR_load_crypto_strings, SSL_load_error_strings, ERR_free_strings \-

View File

@ -1,7 +1,7 @@
.\" $NetBSD: ERR_load_strings.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: ERR_load_strings.3,v 1.9 2002/08/08 23:47:49 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:34 2002
.\" Fri Aug 9 08:28:02 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "ERR_load_strings 3"
.TH ERR_load_strings 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH ERR_load_strings 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
ERR_load_strings, \s-1ERR_PACK\s0, ERR_get_next_error_library \- load

View File

@ -1,7 +1,7 @@
.\" $NetBSD: ERR_print_errors.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: ERR_print_errors.3,v 1.9 2002/08/08 23:47:50 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:34 2002
.\" Fri Aug 9 08:28:03 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "ERR_print_errors 3"
.TH ERR_print_errors 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH ERR_print_errors 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
ERR_print_errors, ERR_print_errors_fp \- print error messages

View File

@ -1,7 +1,7 @@
.\" $NetBSD: ERR_put_error.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: ERR_put_error.3,v 1.9 2002/08/08 23:47:50 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:35 2002
.\" Fri Aug 9 08:28:03 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "ERR_put_error 3"
.TH ERR_put_error 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH ERR_put_error 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
ERR_put_error, ERR_add_error_data \- record an error

View File

@ -1,7 +1,7 @@
.\" $NetBSD: ERR_remove_state.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: ERR_remove_state.3,v 1.9 2002/08/08 23:47:50 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:35 2002
.\" Fri Aug 9 08:28:04 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "ERR_remove_state 3"
.TH ERR_remove_state 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH ERR_remove_state 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
ERR_remove_state \- free a thread's error queue

View File

@ -1,7 +1,7 @@
.\" $NetBSD: EVP_DigestInit.3,v 1.9 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: EVP_DigestInit.3,v 1.10 2002/08/08 23:47:51 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:35 2002
.\" Fri Aug 9 08:28:04 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "EVP_DigestInit 3"
.TH EVP_DigestInit 3 "0.9.6e" "2002-07-31" "OpenSSL"
.TH EVP_DigestInit 3 "0.9.6f" "2002-07-31" "OpenSSL"
.UC
.SH "NAME"
EVP_DigestInit, EVP_DigestUpdate, EVP_DigestFinal, \s-1EVP_MAX_MD_SIZE\s0,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: EVP_EncryptInit.3,v 1.9 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: EVP_EncryptInit.3,v 1.10 2002/08/08 23:47:51 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:36 2002
.\" Fri Aug 9 08:28:05 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "EVP_EncryptInit 3"
.TH EVP_EncryptInit 3 "0.9.6e" "2002-06-10" "OpenSSL"
.TH EVP_EncryptInit 3 "0.9.6f" "2002-06-10" "OpenSSL"
.UC
.SH "NAME"
EVP_EncryptInit, EVP_EncryptUpdate, EVP_EncryptFinal, EVP_DecryptInit,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: EVP_OpenInit.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: EVP_OpenInit.3,v 1.9 2002/08/08 23:47:51 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:36 2002
.\" Fri Aug 9 08:28:06 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "EVP_OpenInit 3"
.TH EVP_OpenInit 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH EVP_OpenInit 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
EVP_OpenInit, EVP_OpenUpdate, EVP_OpenFinal \- \s-1EVP\s0 envelope decryption

View File

@ -1,7 +1,7 @@
.\" $NetBSD: EVP_SealInit.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: EVP_SealInit.3,v 1.9 2002/08/08 23:47:51 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:36 2002
.\" Fri Aug 9 08:28:07 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "EVP_SealInit 3"
.TH EVP_SealInit 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH EVP_SealInit 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
EVP_SealInit, EVP_SealUpdate, EVP_SealFinal \- \s-1EVP\s0 envelope encryption

View File

@ -1,7 +1,7 @@
.\" $NetBSD: EVP_SignInit.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: EVP_SignInit.3,v 1.9 2002/08/08 23:47:51 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:37 2002
.\" Fri Aug 9 08:28:07 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "EVP_SignInit 3"
.TH EVP_SignInit 3 "0.9.6e" "2002-07-31" "OpenSSL"
.TH EVP_SignInit 3 "0.9.6f" "2002-07-31" "OpenSSL"
.UC
.SH "NAME"
EVP_SignInit, EVP_SignUpdate, EVP_SignFinal \- \s-1EVP\s0 signing functions

View File

@ -1,7 +1,7 @@
.\" $NetBSD: EVP_VerifyInit.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: EVP_VerifyInit.3,v 1.9 2002/08/08 23:47:52 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:37 2002
.\" Fri Aug 9 08:28:07 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "EVP_VerifyInit 3"
.TH EVP_VerifyInit 3 "0.9.6e" "2002-07-31" "OpenSSL"
.TH EVP_VerifyInit 3 "0.9.6f" "2002-07-31" "OpenSSL"
.UC
.SH "NAME"
EVP_VerifyInit, EVP_VerifyUpdate, EVP_VerifyFinal \- \s-1EVP\s0 signature verification functions

View File

@ -1,7 +1,7 @@
.\" $NetBSD: OPENSSL_VERSION_NUMBER.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: OPENSSL_VERSION_NUMBER.3,v 1.9 2002/08/08 23:47:52 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:38 2002
.\" Fri Aug 9 08:28:08 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "OPENSSL_VERSION_NUMBER 3"
.TH OPENSSL_VERSION_NUMBER 3 "0.9.6e" "2002-06-10" "OpenSSL"
.TH OPENSSL_VERSION_NUMBER 3 "0.9.6f" "2002-06-10" "OpenSSL"
.UC
.SH "NAME"
\&\s-1OPENSSL_VERSION_NUMBER\s0, SSLeay, SSLeay_version \- get OpenSSL version number

View File

@ -1,7 +1,7 @@
.\" $NetBSD: OpenSSL_add_all_algorithms.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: OpenSSL_add_all_algorithms.3,v 1.9 2002/08/08 23:47:52 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:38 2002
.\" Fri Aug 9 08:28:09 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "OpenSSL_add_all_algorithms 3"
.TH OpenSSL_add_all_algorithms 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH OpenSSL_add_all_algorithms 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
OpenSSL_add_all_algorithms, OpenSSL_add_all_ciphers, OpenSSL_add_all_digests \-

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RAND_add.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: RAND_add.3,v 1.9 2002/08/08 23:47:52 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:38 2002
.\" Fri Aug 9 08:28:10 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RAND_add 3"
.TH RAND_add 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH RAND_add 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
RAND_add, RAND_seed, RAND_status, RAND_event, RAND_screen \- add

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RAND_bytes.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: RAND_bytes.3,v 1.9 2002/08/08 23:47:52 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:39 2002
.\" Fri Aug 9 08:28:10 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RAND_bytes 3"
.TH RAND_bytes 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH RAND_bytes 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
RAND_bytes, RAND_pseudo_bytes \- generate random data

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RAND_cleanup.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: RAND_cleanup.3,v 1.9 2002/08/08 23:47:52 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:39 2002
.\" Fri Aug 9 08:28:11 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RAND_cleanup 3"
.TH RAND_cleanup 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH RAND_cleanup 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
RAND_cleanup \- erase the \s-1PRNG\s0 state

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RAND_egd.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: RAND_egd.3,v 1.9 2002/08/08 23:47:53 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:40 2002
.\" Fri Aug 9 08:28:12 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RAND_egd 3"
.TH RAND_egd 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH RAND_egd 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
RAND_egd \- query entropy gathering daemon

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RAND_load_file.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: RAND_load_file.3,v 1.9 2002/08/08 23:47:53 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:40 2002
.\" Fri Aug 9 08:28:12 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RAND_load_file 3"
.TH RAND_load_file 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH RAND_load_file 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
RAND_load_file, RAND_write_file, RAND_file_name \- \s-1PRNG\s0 seed file

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RAND_set_rand_method.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: RAND_set_rand_method.3,v 1.9 2002/08/08 23:47:53 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:40 2002
.\" Fri Aug 9 08:28:13 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RAND_set_rand_method 3"
.TH RAND_set_rand_method 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH RAND_set_rand_method 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
RAND_set_rand_method, RAND_get_rand_method, RAND_SSLeay \- select \s-1RAND\s0 method

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RSA_blinding_on.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: RSA_blinding_on.3,v 1.9 2002/08/08 23:47:53 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:40 2002
.\" Fri Aug 9 08:28:13 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RSA_blinding_on 3"
.TH RSA_blinding_on 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH RSA_blinding_on 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
RSA_blinding_on, RSA_blinding_off \- protect the \s-1RSA\s0 operation from timing attacks

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RSA_check_key.3,v 1.8 2002/07/31 01:45:25 itojun Exp $
.\" $NetBSD: RSA_check_key.3,v 1.9 2002/08/08 23:47:53 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:41 2002
.\" Fri Aug 9 08:28:14 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RSA_check_key 3"
.TH RSA_check_key 3 "0.9.6e" "2002-07-31" "OpenSSL"
.TH RSA_check_key 3 "0.9.6f" "2002-07-31" "OpenSSL"
.UC
.SH "NAME"
RSA_check_key \- validate private \s-1RSA\s0 keys

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RSA_generate_key.3,v 1.8 2002/07/31 01:45:26 itojun Exp $
.\" $NetBSD: RSA_generate_key.3,v 1.9 2002/08/08 23:47:53 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:41 2002
.\" Fri Aug 9 08:28:14 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RSA_generate_key 3"
.TH RSA_generate_key 3 "0.9.6e" "2002-06-10" "OpenSSL"
.TH RSA_generate_key 3 "0.9.6f" "2002-06-10" "OpenSSL"
.UC
.SH "NAME"
RSA_generate_key \- generate \s-1RSA\s0 key pair

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RSA_get_ex_new_index.3,v 1.8 2002/07/31 01:45:26 itojun Exp $
.\" $NetBSD: RSA_get_ex_new_index.3,v 1.9 2002/08/08 23:47:54 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:41 2002
.\" Fri Aug 9 08:28:15 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RSA_get_ex_new_index 3"
.TH RSA_get_ex_new_index 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH RSA_get_ex_new_index 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data \- add application specific data to \s-1RSA\s0 structures

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RSA_new.3,v 1.8 2002/07/31 01:45:26 itojun Exp $
.\" $NetBSD: RSA_new.3,v 1.9 2002/08/08 23:47:54 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:42 2002
.\" Fri Aug 9 08:28:16 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RSA_new 3"
.TH RSA_new 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH RSA_new 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
RSA_new, RSA_free \- allocate and free \s-1RSA\s0 objects

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RSA_padding_add_PKCS1_type_1.3,v 1.8 2002/07/31 01:45:26 itojun Exp $
.\" $NetBSD: RSA_padding_add_PKCS1_type_1.3,v 1.9 2002/08/08 23:47:54 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:42 2002
.\" Fri Aug 9 08:28:16 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RSA_padding_add_PKCS1_type_1 3"
.TH RSA_padding_add_PKCS1_type_1 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH RSA_padding_add_PKCS1_type_1 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
RSA_padding_add_PKCS1_type_1, RSA_padding_check_PKCS1_type_1,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RSA_print.3,v 1.8 2002/07/31 01:45:26 itojun Exp $
.\" $NetBSD: RSA_print.3,v 1.9 2002/08/08 23:47:54 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:42 2002
.\" Fri Aug 9 08:28:17 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RSA_print 3"
.TH RSA_print 3 "0.9.6e" "2001-04-12" "OpenSSL"
.TH RSA_print 3 "0.9.6f" "2001-04-12" "OpenSSL"
.UC
.SH "NAME"
RSA_print, RSA_print_fp, DHparams_print, DHparams_print_fp, DSA_print,

View File

@ -1,7 +1,7 @@
.\" $NetBSD: RSA_private_encrypt.3,v 1.8 2002/07/31 01:45:26 itojun Exp $
.\" $NetBSD: RSA_private_encrypt.3,v 1.9 2002/08/08 23:47:54 itojun Exp $
.\"
.\" Automatically generated by Pod::Man version 1.02
.\" Wed Jul 31 10:37:43 2002
.\" Fri Aug 9 08:28:18 2002
.\"
.\" Standard preamble:
.\" ======================================================================
@ -140,7 +140,7 @@
.\" ======================================================================
.\"
.IX Title "RSA_private_encrypt 3"
.TH RSA_private_encrypt 3 "0.9.6e" "2000-07-22" "OpenSSL"
.TH RSA_private_encrypt 3 "0.9.6f" "2000-07-22" "OpenSSL"
.UC
.SH "NAME"
RSA_private_encrypt, RSA_public_decrypt \- low level signature operations

Some files were not shown because too many files have changed in this diff Show More