Re: Stream file encryption (syslog-ng logs to openssl for live encryption)

2013-04-10 Thread Jakob Bohm
On 4/10/2013 12:53 PM, dav74 wrote: Hi, I am looking for a solution for "live" encryption of data flow to a file. Actually i am able to encrypt a file using : openssl smime -binary -encrypt -aes256 -in proxy.log -out proxy.log.enc certificate-file.crt While in theory the smime/cms/pkcs#7 encry

Stream file encryption (syslog-ng logs to openssl for live encryption)

2013-04-10 Thread dav74
e, but it doesn t do live encryption... openssl store the data in memory until the file is closed... Kind regards, -- View this message in context: http://openssl.6102.n7.nabble.com/Stream-file-encryption-syslog-ng-logs-to-openssl-for-live-encryption-tp44734.html Sent from the OpenSSL - User mai

PBKDF2 file encryption in perl

2010-03-17 Thread Anthony Thyssen
Is there any way to access the OpenSSL PKCS5_PBKDF2_HMAC_SHA1() function from a Perl Script or the command line. I can't seem to find any way to access this function except from C or other API's. And how does this function differ from EVP_BytesToKey() expecially when given a large iterative co

Re: asymmetric file encryption

2007-12-05 Thread Aleksander Kamenik
Marek Marcola wrote: When using asymmetric cryptography you in reality use hybrid symmetric and asymmetric methods. Depending on your needs, you may need different "hybrid" protocol. What are the other options? S/MIME is for email. I want to encrypt/decrypt files (mostly gunzip packages) for

Re: asymmetric file encryption

2007-12-04 Thread Marek Marcola
On Tue, 2007-12-04 at 15:50 +0200, Aleksander Kamenik wrote: > Hi, > > I want to use openssl to encrypt and decrypt files using asymmetric > encryption. > > I tried to do symmetric encryption with enc, works fine. Example: > > openssl enc -e -aes128 -pass file:/path/to/passkey > > What command

asymmetric file encryption

2007-12-04 Thread Aleksander Kamenik
Hi, I want to use openssl to encrypt and decrypt files using asymmetric encryption. I tried to do symmetric encryption with enc, works fine. Example: openssl enc -e -aes128 -pass file:/path/to/passkey What command is used for asymmetric? What kind of keys do you recommend to generate for th

AIX 5.x file encryption problem

2007-03-09 Thread Harald Latzko
Hello list! I have problems encrypting files with the following command: openssl smime -encrypt -in /tmp/infile -out /tmp/testencrypted -nodetach -binary -des3 -outform DER /tmp/mypub.cer This command is running in several versions of openSSL successfully on several platforms (Linux, MacOS X, Wi

RE: Command-line file encryption

2006-08-25 Thread Marek Marcola
Hello, > So what you are saying is that if I encrypt a file with a password > according to my interpretation of PKCS#5/PBKDF2, then it might not > decrypt properly (with the same password) using the command-line openssl > function? Yes, this function internally looks like PBKDF2 and has similar use

RE: Command-line file encryption

2006-08-24 Thread Randy Turner
] [mailto:[EMAIL PROTECTED] On Behalf Of Marek Marcola Sent: Wednesday, August 23, 2006 11:53 PM To: openssl-users@openssl.org Subject: RE: Command-line file encryption Hello, > Ok, it looks like these values are computed from the password... > > Is the algorithm for computing the key an

RE: Command-line file encryption

2006-08-23 Thread Marek Marcola
Hello, > Ok, it looks like these values are computed from the password... > > Is the algorithm for computing the key and IV from the password > published ? PBKDF2 from PKCS#5 realized by EVP_BytesToKey() in OpenSSL. I don't remember exactly but there was some incompatibility with this standard ...

RE: Command-line file encryption

2006-08-23 Thread Randy Turner
: openssl-users@openssl.org Subject: Command-line file encryption Using the following command... openssl enc -aes-256-cbc -salt -in -out I can create an AES-encrypted file. Subsequently I can use the -d option to decrypt the same file if I use the same key (when prompted) that I used to encrypt

Command-line file encryption

2006-08-23 Thread Randy Turner
Using the following command... openssl enc -aes-256-cbc -salt -in -out I can create an AES-encrypted file. Subsequently I can use the -d option to decrypt the same file if I use the same key (when prompted) that I used to encrypt the file. I think the same initialization vector (IV) has to b

Re: FW: FW: File encryption with smime

2006-08-17 Thread Girish Venkatachalam
--- "Buicliu, Ion VSA:EX" <[EMAIL PROTECTED]> wrote: > > > > > > > What we are trying to do is to place an encrypted > file on our ftp > > server for a specific user. The ftp server is > behind a firewall, and > > the user can access and see only its account, and > they are supposed to >

FW: FW: File encryption with smime

2006-08-17 Thread Buicliu, Ion VSA:EX
> > What we are trying to do is to place an encrypted file on our ftp > server for a specific user. The ftp server is behind a firewall, and > the user can access and see only its account, and they are supposed to > get the file and decrypt it. As far as we are concerned, we'd like to > ma

Re: FW: File encryption with smime

2006-08-17 Thread Girish Venkatachalam
--- "Buicliu, Ion VSA:EX" <[EMAIL PROTECTED]> wrote: > Thank you Girish, I understand now. The > combination: encrypt with > public key - decrypt with private works. > > What we are trying to do is to place an encrypted > file on our ftp server > for a specific user. The ftp server is behind

FW: File encryption with smime

2006-08-16 Thread Buicliu, Ion VSA:EX
Thank you Girish, I understand now. The combination: encrypt with public key - decrypt with private works. What we are trying to do is to place an encrypted file on our ftp server for a specific user. The ftp server is behind a firewall, and the user can access and see only its account, and they

Re: File encryption with smime

2006-08-15 Thread Girish Venkatachalam
--- "Buicliu, Ion VSA:EX" <[EMAIL PROTECTED]> wrote: > I am trying to do the following: > - create a private and public key (self-signed > certificate) > - encrypt a file and place on an ftp server > - the client will pick up the file and decrypt it > using the PUBLIC key > > Here is what I did

File encryption with smime

2006-08-15 Thread Buicliu, Ion VSA:EX
Title: File encryption with smime I am trying to do the following: - create a private and public key (self-signed certificate) - encrypt a file and place on an ftp server - the client will pick up the file and decrypt it using the PUBLIC key Here is what I did to create the certificate

Re: OpenSSL stream interface for file encryption

2005-09-06 Thread Dr. Stephen Henson
On Tue, Sep 06, 2005, Dusty Hendrickson wrote: > Does OpenSSL have a stream interface for file encryption? For example, is > there a stream-based method of encrypting a file in pieces rather than > loading an entire file into memory? > Depends on what you mean by "file enc

OpenSSL stream interface for file encryption

2005-09-06 Thread Dusty Hendrickson
Does OpenSSL have a stream interface for file encryption? For example, is there a stream-based method of encrypting a file in pieces rather than loading an entire file into memory? Dusty __ OpenSSL Project

Re: file encryption

2004-08-27 Thread Dr. Stephen Henson
On Fri, Aug 27, 2004, ecc samba wrote: > Hi Everybody, > we are trying to encrypt a file using the openssl command. > > openssl enc -ciphername [-in filename] [-out filename] [-pass arg] [-e] [-d] [-a] > [-A] [-k password] [-kfile filename] [-K key] [-iv IV] [-p] [-P] [-bufsize nu

file encryption

2004-08-27 Thread ecc samba
Hi Everybody, we are trying to encrypt a file using the openssl command.   openssl enc -ciphername [-in filename] [-out filename] [-pass arg] [-e] [-d] [-a] [-A] [-k password] [-kfile filename] [-K key] [-iv IV] [-p] [-P] [-bufsize number] [-debugopenssl enc -ciphername [-in filename]

file encryption tool

2001-11-29 Thread Haikel MEJRI
Hi, Does any one know any file encryption application, based on openssl or not, that uses hybrid cryptosystems (like PGP) with digital certificates support. Thanks __ OpenSSL Project http

file encryption on Win95/98

2001-04-11 Thread Hirohiko Nakano
I want to use a file/disk encryption tool on Win95/98, like an EFS on Win2000. The automatic encryption/decryption feature of EFS is very attractive for me. Please tell me some good tools. Thank you. Hirohiko Nakano [EMAIL PROTECTED] __