This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: question about encrypt
- To: "Wang, Sheng (MED)" <Sheng dot Wang at med dot ge dot com>
- Subject: Re: question about encrypt
- From: Zack Weinberg <zack at codesourcery dot com>
- Date: Tue, 13 Nov 2001 14:08:58 -0800
- Cc: "'gcc at gcc dot gnu dot org'" <gcc at gcc dot gnu dot org>
- References: <D4DBD8568F05D511A1C20002A55C008CFDD9B5@uswaumsx03medge.med.ge.com>
[Get raw message]
On Tue, Nov 13, 2001 at 03:07:49PM -0600, Wang, Sheng (MED) wrote:
> Hi there,
>
> Could you suggest a way to find out if the GCC compiler that we are
> using is an international version or domestic version.
> I need encrypt/decrypt some config files, it seems like decryption by
> using encrypt function call is not supported due to the version. Is
> there a way to go around that ?
There is no such thing as an "international" or "domestic" version
of GCC. It compiles all code the same. You are probably referring to
restrictions in your C *library*, which we do not provide and don't know
anything about. In fact, we have no idea what kind of computer you are
using, so we can't even begin to guess.
If you need a general data encryption library, suggest you look at
OpenSSL. http://www.openssl.org/
zw