RE: Intercepting with data for mod_dav

2005-02-04 Thread Jeff Finn
I've been doing this with mod_perl 2.. here's the relative parts of my config: Alias /dav_files /home/users # # hook into the other phases for # PerlOutputFilterHandler MyEncrypt::output PerlInputFilterHandler MyEncrypt::input PerlSetOutputFilter

Re: Intercepting with data for mod_dav

2005-02-04 Thread Stefan Sonnenberg-Carstens
Jeff Finn schrieb: I've been doing this with mod_perl 2.. here's the relative parts of my config: Alias /dav_files /home/users # # hook into the other phases for # PerlOutputFilterHandler MyEncrypt::output PerlInputFilterHandler MyEncrypt::input PerlSetOu

Re: Intercepting with data for mod_dav

2005-02-05 Thread Philippe M. Chiasson
Jeff Finn wrote: [...] To the list: My encryption is proprietary based on the PW the user sends... anyone know a tested symmetric streaming (not block) encryption algoritm? RC4: http://search.cpan.org/dist/Crypt-RC4/ SEAL2: http://search.cpan.org/dist/Crypt-SEAL2/ --