mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-29 22:49:41 +03:00 
			
		
		
		
	Add bytea.h inclusions as needed. Some of the contrib regression tests need to be de-hexified, too. Per buildfarm.
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
| --
 | |
| -- PGP Public Key Encryption
 | |
| --
 | |
| -- ensure consistent test output regardless of the default bytea format
 | |
| SET bytea_output TO escape;
 | |
| 
 | |
| -- successful encrypt/decrypt
 | |
| select pgp_pub_decrypt(
 | |
| 	pgp_pub_encrypt('Secret msg', dearmor(pubkey)),
 | |
| 	dearmor(seckey))
 | |
| from keytbl where keytbl.id=1;
 | |
| 
 | |
| select pgp_pub_decrypt(
 | |
| 		pgp_pub_encrypt('Secret msg', dearmor(pubkey)),
 | |
| 		dearmor(seckey))
 | |
| from keytbl where keytbl.id=2;
 | |
| 
 | |
| select pgp_pub_decrypt(
 | |
| 		pgp_pub_encrypt('Secret msg', dearmor(pubkey)),
 | |
| 		dearmor(seckey))
 | |
| from keytbl where keytbl.id=3;
 | |
| 
 | |
| select pgp_pub_decrypt(
 | |
| 		pgp_pub_encrypt('Secret msg', dearmor(pubkey)),
 | |
| 		dearmor(seckey))
 | |
| from keytbl where keytbl.id=6;
 | |
| 
 | |
| -- try with rsa-sign only
 | |
| select pgp_pub_decrypt(
 | |
| 		pgp_pub_encrypt('Secret msg', dearmor(pubkey)),
 | |
| 		dearmor(seckey))
 | |
| from keytbl where keytbl.id=4;
 | |
| 
 | |
| -- try with secret key
 | |
| select pgp_pub_decrypt(
 | |
| 		pgp_pub_encrypt('Secret msg', dearmor(seckey)),
 | |
| 		dearmor(seckey))
 | |
| from keytbl where keytbl.id=1;
 | |
| 
 | |
| -- does text-to-bytea works
 | |
| select pgp_pub_decrypt_bytea(
 | |
| 		pgp_pub_encrypt('Secret msg', dearmor(pubkey)),
 | |
| 		dearmor(seckey))
 | |
| from keytbl where keytbl.id=1;
 | |
| 
 | |
| -- and bytea-to-text?
 | |
| select pgp_pub_decrypt(
 | |
| 		pgp_pub_encrypt_bytea('Secret msg', dearmor(pubkey)),
 | |
| 		dearmor(seckey))
 | |
| from keytbl where keytbl.id=1;
 | |
| 
 | |
| 
 |