Re: How to use openssl in cygwin

2006-06-05 Thread Larry Hall (Cygwin)
cxf wrote: > Hi,all: >I installed the Cygwin which is the Full version. >I write the Program as the following: >#include >int main() >{ > EVP_MD_CTX md_ctx; > unsigned int result_size; > int rv; > rv = EVP_SignInit(&md_ctx, EVP_sha1()); > return rv; >}

How to use openssl in cygwin

2006-06-05 Thread cxf
Hi,all: I installed the Cygwin which is the Full version. I write the Program as the following: #include int main() { EVP_MD_CTX md_ctx; unsigned int result_size; int rv; rv = EVP_SignInit(&md_ctx, EVP_sha1()); return rv; } It is very simple,then I compil