InterBase Database Encryption
Go Up to Developing Database Applications
InterBase Encryption is supported starting with InterBase 2009. InterBase enables you to encrypt information at one or both of the following levels:
- Database Level Encryption (InterBase encrypts all database pages containing user information).
- Column Level Encryption (Column-level encryption is more flexible and specific).
Using InterBase Database Encryption, you can also encrypt Database Backup Files. For more information about encrypting your data with InterBase, see Data Definition Guide.
Contents
Create Encryption with InterBase
To create specific encryption tasks in InterBase, you need to create the System Data Security Owner (SYSDSO). Both users, the SYSDSO and the SYSDBA (the database owner), have responsibilities for InterBase Encryption. The table below shows the differences between the user's tasks:
Permissions | Database Owner |
SYSDSO |
---|---|---|
Create Encryption Keys |
NO | YES |
Set the SEP |
NO | YES |
Grant Encrypt Privileges |
NO | YES |
Encrypt Database |
YES | NO |
Encrypt Columns |
YES | NO |
Grant Decrypt Privileges |
YES | NO |
Also, encryption tasks can be performed by any individual table owner who is given permission to encrypt columns in a table.
Encrypt a Database with IBConsole
There are two ways to encrypt a database in InterBase. You can enable and implement encryption using isql or you can encrypt a database with IBConsole. For this specific topic, we use the second option - Encrypt a Database with IBConsole.
To perform encryption when creating a new database, follow these steps:
- Open IBConsole.
- Select Server > Login from the menu.
- Login as a SYSDBA or as a database owner.
- Select Database > Create Database from the menu.
- In the Save In field, select the folder where you want to save the database.
- Specify a file name, click Save, and the dialog closes.
- Change the value in the Embedded User Authentication field to Yes.
- Note: The Use Encryption field is now visible.
- Change the value in the Use Encryption field to Yes.
- Click the OK button to create a database.
- Enter your connection information and click the Connect button.
- On the Encryption Wizard, click the Next button.
- Type the SYSDSO password and click the Next button.
- Type the SEP password and click the Next button.
- Type a name for the Encryption Key.
- Select DES for the Cipher option.
- Click the OK button.
- Type the BackupKey Name and password.
- Note: To maintain the security and confidentiality of encrypted databases, you must also encrypt database backup files.
- Click the OK button.
- On the dialog opened, click the OK button.
System Encryption Password parameter in InterBase
When a database is encrypted in InterBase, the SEP can be set internal (the default, no keyword used) or external (keyword used).
- The internal SEP allows the database to be accessed by the database users when someone has used the database once with the SEP on the machine. Subsequent connections or a connection after a machine reboot do not need to provide the SEP value. If the RAD Studio application is deployed to Mac or to a mobile device, then the first connection requires the SEP parameter value.
- The database set with external SEP requires the first connection to have the SEP parameter value. After rebooting the machine, the application must provide the SEP at the first connection. The external System Encryption Password is safer for mobile devices.
alter database set system encryption password <255-character string> [external]
command.System Encryption Password in dbExpress
With dbExpress, you can set the SEP value in the TSQLConnection Params collection or you can set the SEP value programmatically.
procedure TForm10.BtnConnectClick(Sender: TObject);
begin
try
SQLConnection1.Params.Values['SEP']:='password';
SQLConnection1.Connected:=true;
except
on E:Exception do
ShowMessage(E.ClassName + ' ' + E.Message);
end;
end;
System Encryption Password in FireDAC
With FireDAC, you can set the SEPassword parameter in the TFDConnection connection definition parameters.
procedure TForm10.BtnConnectClick(Sender: TObject);
begin
try
FDConnection1.Params.Values['SEPasword']:='password';
FDConnection1.Connected:=true;
except
on E:Exception do
ShowMessage(E.ClassName + ' ' + E.Message);
end;
end;
System Encryption Password in InterBase Express
With InterBase Express (IBX), the SysEncryptPassword TIBDatabase parameter is set programmatically.
procedure TForm10.BtnConnectClick(Sender: TObject);
begin
try
IBDatabase1.SysEncryptPassword:='password';
IBDatabase1.Open;
except
on E:Exception do
ShowMessage(E.ClassName + ' ' + E.Message);
end;
end;