OpenSSL is written in C.  It is distributed as a .tar.gz file, not a
.jar file.

jar is the format used by Java and certain Java Native Interface code,
and is based on the zip file format. It's not generally to distribute C.

tar.gz is a tar archive file (tar being the 'tape archive' program of
UNIX and Linux), which has then been compressed with GNU gzip.  It can
be opened on Windows using 7-Zip, WinRAR, or many other tools.  On
GNU/Linux, it can be unpacked with `tar -xzvf
openssl-versioncode.tar.gz`.  On other UNIXen, it can be opened
(assuming GNU gzip has been installed) with `gzip -d
openssl-versioncode.tar.gz | tar xvf -`.

The code can be downloaded from https://www.openssl.org/source/ .

-Kyle H

On 3/22/2015 11:29 AM, Niraj Sorathiya wrote:
>
> Hi,
>
> Thanks Matt and  jar file of openssl source code is available  ?
> I searched a lot but didn't get.
>
> Regards,
> Niraj.
>
> On 22-Mar-2015 8:01 PM, "Matt Caswell" <m...@openssl.org
> <mailto:m...@openssl.org>> wrote:
>
>
>
>     On 22/03/15 04:14, Niraj Sorathiya wrote:
>     > Hi,
>     >
>     > Can anyone tell me starting point or location of main method in
>     openssl
>     > source code which starts openssl command line toolkit ?
>     >
>
>     Hi Niraj
>
>     "main" is located in apps/openssl.c
>
>     Matt
>     _______________________________________________
>     openssl-users mailing list
>     To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users
>
>
>
> _______________________________________________
> openssl-users mailing list
> To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

_______________________________________________
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Reply via email to