Skip to content

Instantly share code, notes, and snippets.

@dariushoule
Created April 11, 2016 21:07
Show Gist options
  • Select an option

  • Save dariushoule/d5d8bdfda57bf704384344ccab150016 to your computer and use it in GitHub Desktop.

Select an option

Save dariushoule/d5d8bdfda57bf704384344ccab150016 to your computer and use it in GitHub Desktop.
bigint feistel pseudo encrypt
CREATE OR REPLACE FUNCTION pseudo_encrypt(VALUE bigint) returns bigint AS $$
DECLARE
l1 bigint;
l2 bigint;
r1 bigint;
r2 bigint;
i int:=0;
BEGIN
l1:= (VALUE >> 32) & 4294967295::bigint;
r1:= VALUE & 4294967295;
WHILE i < 3 LOOP
l2 := r1;
r2 := l1 # ((((1366.0 * r1 + 150889) % 714025) / 714025.0) * 32767*32767)::int;
l1 := l2;
r1 := r2;
i := i + 1;
END LOOP;
RETURN ((r1::bigint << 32) + l1);
END;
$$ LANGUAGE plpgsql strict immutable;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment