Resolution
Please see video below:
Method:
1) First you need to bring up your LiteSpeed console.
2) From LiteSpeed console | select model | right click to perform a backup test.
3) Choose regular backup | click next | select destination | click next | at options click next
4) At compression and encryption | select encrypt backup | choose your encryption level | insert password
5) Click next | next | select preview script to view the backup syntax | close it when done with review.
6) Click next to execute and finish.
Example script:
This is @cryptlevel parameter to insert in your script and it work in conjunction with the @encryptionkey parameter.
Specify the encryption level. Higher levels improve security, but they require more CPU and take longer.
/****** Please do not forget to change the value for @encryptionkey ******/
/****** IE: @encryptionkey = N'myEncryptionKey' ******/
exec master.dbo.xp_backup_database
@database = N'model',@backupname = N'model - Full Database Backup',
@desc = N'Full Backup of model on 3/26/2013 9:45:49 AM',@compressionlevel = 2,
@filename = N'C:\LSBACKUP\Model_201303260857.bak',@init = 1,
@encryptionkey = N'***',
@cryptlevel = 0,
@with = N'STATS = 10'
GO
/****** This @cryptlevel argument accepts one of the following values: ******/
0—40-bit RC2
1—56 bit RC2
2—112 bit RC2
3—128 bit RC2
4—168 bit 3DES
5—128 bit RC4
6—128 bit AES
7—192 bit AES
8—256 bit AES