Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-16 Thread Niccolo Rigacci
On Thu, Sep 15, 2011 at 08:53:50PM -0400, John Patterson wrote: I'd say that encryption is the answer here - hang the security on the key rather than the code. I think that this is not the case depicted by Giovanni; if I understand well he wants to prevent the letitimate user (which

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-16 Thread Martin Dobias
On Fri, Sep 16, 2011 at 2:53 AM, John Patterson j...@henrygis.com wrote: I'd say that encryption is the answer here - hang the security on the key rather than the code. If the requirement is explicitly should be only visible and usable through the customized qgis and not by any other tool.,

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-16 Thread G. Allegri
Thanks for the brainstorming. I will bring the various usefull considerations to my collegues. I'll let you know about the policies that will be chosen, and consequently the road to achieve them. giovanni 2011/9/16 Martin Dobias wonder...@gmail.com On Fri, Sep 16, 2011 at 2:53 AM, John

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-16 Thread Barry Rowlingson
On Thu, Sep 15, 2011 at 8:56 PM, Marco Hugentobler marco.hugentob...@sourcepole.ch wrote: Hi Giovanni  The simplest solution might be to encrypt the data and send the key to your clients. Simplest, but if you send the key in plaintext then you might as well send the data in plaintext -

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-16 Thread Barry Rowlingson
On Thu, Sep 15, 2011 at 11:14 AM, G. Allegri gioha...@gmail.com wrote: I've been asked to create a custom qgis, to be distributed via CD/DVD along with some data (vector and raster) that should be only visible and usable thorugh the customized qgis and not by any other tool. Has somebody in

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-16 Thread John Patterson
That's a great point - I was envisioning a scenario in which end users are to be (mostly) trusted not to take efforts to re-distribute the data. John On Fri, Sep 16, 2011 at 2:42 AM, Niccolo Rigacci nicc...@rigacci.orgwrote: On Thu, Sep 15, 2011 at 08:53:50PM -0400, John Patterson wrote:

[Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread G. Allegri
I've been asked to create a custom qgis, to be distributed via CD/DVD along with some data (vector and raster) that should be only visible and usable thorugh the customized qgis and not by any other tool. Has somebody in this list ever had to manage this kind of obfuscation? giovanni

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread Sandro Santilli
On Thu, Sep 15, 2011 at 12:14:37PM +0200, G. Allegri wrote: I've been asked to create a custom qgis, to be distributed via CD/DVD along with some data (vector and raster) that should be only visible and usable thorugh the customized qgis and not by any other tool. Has somebody in this list

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread Sandro Santilli
On Thu, Sep 15, 2011 at 12:50:28PM +0200, Sandro Santilli wrote: On Thu, Sep 15, 2011 at 12:14:37PM +0200, G. Allegri wrote: I've been asked to create a custom qgis, to be distributed via CD/DVD along with some data (vector and raster) that should be only visible and usable thorugh the

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread G. Allegri
@Sandro: it's a requirement I'm asked to implement, not an hypothesis to discuss. We can debate on the choice, but that's not my problem at now ;) @Niccolò: good point. Howevere one could write a non GPL piece of code (the minimum to keep the data undisclosable) and link qgis to it. Is it

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread Niccolo Rigacci
On Thu, Sep 15, 2011 at 12:14:37PM +0200, G. Allegri wrote: I've been asked to create a custom qgis, to be distributed via CD/DVD along with some data (vector and raster) that should be only visible and usable thorugh the customized qgis and not by any other tool. It will be an ineffective

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread Sandro Santilli
On Thu, Sep 15, 2011 at 01:10:55PM +0200, G. Allegri wrote: @Sandro: it's a requirement I'm asked to implement, not an hypothesis to discuss. We can debate on the choice, but that's not my problem at now ;) Oh, I tought you was a free citizen, not a military. But wait, even the military can

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread G. Allegri
2011/9/15 Sandro Santilli s...@keybit.net On Thu, Sep 15, 2011 at 01:10:55PM +0200, G. Allegri wrote: @Sandro: it's a requirement I'm asked to implement, not an hypothesis to discuss. We can debate on the choice, but that's not my problem at now ;) Oh, I tought you was a free citizen, not

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread Marco Hugentobler
Hi Giovanni The simplest solution might be to encrypt the data and send the key to your clients. Regards, Marco Am Donnerstag, 15. September 2011, 12.14:37 schrieb G. Allegri: I've been asked to create a custom qgis, to be distributed via CD/DVD along with some data (vector and raster)

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread Mayeul Kauffmann
@Niccolò: good point. Howevere one could write a non GPL piece of code (the minimum to keep the data undisclosable) and link qgis to it. Is it forbidden by GPL license? I don't think... I think it is. I also believe it might be forbidden by the GPL. I think there might be a way to

Re: [Qgis-developer] Qgis custom buil to read obfuscated data

2011-09-15 Thread John Patterson
I agree that obfuscated source code is against the spirit of the GPL- 'The “source code” for a work means the preferred form of the work for making modifications to it'. There's also the remote possibility of a motivated party working to de-obfuscate if the dataset is juicy enough. I'd say that