Re: WIP: plpgsql source code obfuscation

Поиск
Список
Период
Сортировка
От Zoltan Boszormenyi
Тема Re: WIP: plpgsql source code obfuscation
Дата
Msg-id 47A03B40.2000002@cybertec.at
обсуждение исходный текст
Ответ на Re: WIP: plpgsql source code obfuscation  ("Pavel Stehule" <pavel.stehule@gmail.com>)
Список pgsql-patches
Hi,

Pavel Stehule írta:
> On 29/01/2008, Peter Eisentraut <peter_e@gmx.net> wrote:
>
>> Am Montag, 28. Januar 2008 schrieb Pavel Stehule:
>>
>>> this patch define new function flag - OBFUSCATE. With this flag
>>> encrypted source code is stored to probin column. Password is stored
>>> in GUC_SUPERUSER_ONLY item - it is similar security like SQL Server
>>> does (where privileged users can access system tables with source code
>>> or can use debugger).
>>>
>> Have you thought about a solution that applies the regular access privileges
>> to pg_proc in order to hide some content from less privileged users?
>>
>
> it's second way, and maybe better. It can close way to table
> definitions too (and this request is adequate too). But you cannot to
> hide complete column, visibility depend on content and it can be slow,
> complex :(. Encrypt, decrypt aren't fast too.
>
> Pavel
>

We made a similar encrypted plpgsql for a customer.
It was a fork of plpgsql from 8.2.x and uses pgcrypto internally.
Functions are cached the same way by the backend as regular
plpgsql functions, hence fast. The hashkey of the cached function
is the hash of the already encrypted function so it doesn't need to be
decrypted every time it's looked up. Only the first run of a function is
slower where it is needed to be decrypted for compilation.
The pgcrypto dependency can be lifted and similar Obfuscate() and
Deobfuscate() functions can be used as in the WIP patch posted here.
The encrypted body is stored inside prosrc in our solution and
dumpable/restorable just fine.

Best regards,
Zoltán Böszörményi

--
----------------------------------
Zoltán Böszörményi
Cybertec Schönig & Schönig GmbH
http://www.postgresql.at/



В списке pgsql-patches по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: NUMERIC key word
Следующее
От: Gregory Stark
Дата:
Сообщение: Re: [8.4] Updated WITH clause patch (non-recursive)