Change ALTER TABLE SET WITHOUT OIDS to rewrite the whole table to physically
[PostgreSQL.git] / contrib / pgcrypto / sql / pgp-armor.sql
blob040c4ac038fae436e88d07ba9c1173b744be83ff
1 --
2 -- PGP Armor
3 --
5 select armor('');
6 select armor('test');
7 select dearmor(armor(''));
8 select dearmor(armor('zooka'));
10 select armor('0123456789abcdef0123456789abcdef0123456789abcdef
11 0123456789abcdef0123456789abcdef0123456789abcdef');
13 -- lots formatting
14 select dearmor(' a pgp msg:
16 -----BEGIN PGP MESSAGE-----
17 Comment: Some junk
19 em9va2E=
21   =D5cR
23 -----END PGP MESSAGE-----');
25 -- lots messages
26 select dearmor('
27 wrong packet:
28   -----BEGIN PGP MESSAGE-----
30   d3Jvbmc=
31   =vCYP
32   -----END PGP MESSAGE-----
34 right packet:
35 -----BEGIN PGP MESSAGE-----
37 cmlnaHQ=
38 =nbpj
39 -----END PGP MESSAGE-----
41 use only first packet
42 -----BEGIN PGP MESSAGE-----
44 d3Jvbmc=
45 =vCYP
46 -----END PGP MESSAGE-----
47 ');
49 -- bad crc
50 select dearmor('
51 -----BEGIN PGP MESSAGE-----
53 em9va2E=
54 =ZZZZ
55 -----END PGP MESSAGE-----
56 ');