diff options
author | ivan <ivan> | 2011-10-26 21:55:03 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-10-26 21:55:03 +0000 |
commit | 54175f2f5a03c876c3085e3ca30337c58ec0cc38 (patch) | |
tree | d1c46581f27119647c4bbc1f425933bac0fd4f76 | |
parent | e41880cfb8d9835bca858ec13c96724b08fa0af7 (diff) |
better descriptions for encryption config
-rw-r--r-- | FS/FS/Conf.pm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 113bac083..457364470 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -732,7 +732,7 @@ my %payment_gateway_options = ( { 'key' => 'encryption', 'section' => 'billing', - 'description' => 'Enable encryption of credit cards.', + 'description' => 'Enable encryption of credit cards and eheck numbers', 'type' => 'checkbox', }, @@ -740,20 +740,21 @@ my %payment_gateway_options = ( 'key' => 'encryptionmodule', 'section' => 'billing', 'description' => 'Use which module for encryption?', - 'type' => 'text', + 'type' => 'select', + 'select_enum' => [ '', 'Crypt::OpenSSL::RSA', ], }, { 'key' => 'encryptionpublickey', 'section' => 'billing', - 'description' => 'Your RSA Public Key - Required if Encryption is turned on.', + 'description' => 'Encryption public key', 'type' => 'textarea', }, { 'key' => 'encryptionprivatekey', 'section' => 'billing', - 'description' => 'Your RSA Private Key - Including this will enable the "Bill Now" feature. However if the system is compromised, a hacker can use this key to decode the stored credit card information. This is generally not a good idea.', + 'description' => 'Encryption private key', 'type' => 'textarea', }, |