VARDATA strangness!!! - Mailing list pgsql-interfaces

From Lonnie Cumberland
Subject VARDATA strangness!!!
Date
Msg-id 20010417221810.17804.qmail@web12508.mail.yahoo.com
Whole thread Raw
Responses Re: VARDATA strangness!!!  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-interfaces
Hello All,

I have been working very hard to try and figure out how to get my existing
functions to work in my Postgresql "C" extensions.

I have run across something strange I think.

My original functions have a prototype like:

string EncryptString(const char *plaintext, const char *passPhrase);
string DecryptString(const char *ciphertext, const char *passPhrase);

and my extencions file is trying to get them in the form:

// These are the DES Crypto functions
text *desencrypt(text *plaintext, text *passPhrase);
text *desdecrypt(text *ciphertext, text *passPhrase);

The problem is that I cannot seem to get the VARDATA and VARSIZE to work
correctly and the VARSIZE always seems to be 4 bytes longer for each of the
input variables.

Does anyone have any ideas?

I tried to work along the copy_text() demo in the funcs.c example but this does
not seem to work.

In anycase, inside my existing functions, I need to be able to work with "char
*plaintext", "char *ciphertext", and "char *passPhrase"

How can I encapsulate my existing functions for this with "text *" inputs.

Cheers :( :( :( :( :( :(

__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/


pgsql-interfaces by date:

Previous
From: Rini Dutta
Date:
Subject: Another qs Re: [GENERAL] drastic reduction in speed of inserts as the table grows
Next
From: Lonnie Cumberland
Date:
Subject: Where are the 7.1 RPM's?