Index: aes.module
--- aes.module Base (BASE)
+++ aes.module Locally Modified (Based On LOCAL)
@@ -119,7 +119,7 @@
  $form['aes']['aes_convert'] = array(
  '#type' => 'checkbox',
  '#title' => t('Create AES passwords'),
- '#default_value' => (variable_get("aes_convert", "false") == "true") ? true : false,
+ '#default_value' => variable_get("aes_convert", FALSE),
  '#description' => t('Check this box if you would like for AES to start encrypting user passwords (and make them viewable to the roles with permission to do so). This is a process which normally will make more and more passwords AES-encrypted/readable over time since the AES module only can get an existing users password in plain text at certain moments, one such moment being when the user logs in. So you won\'t be able to view an existing users password until that user has logged in at least once after you checked this box. You may test this on yourself by logging out and in again, which should make your password appear on your user page.'),
  );
  
@@ -245,14 +245,14 @@
 
 function aes_config_submit($form, &$form_state) {
  if ($form_state['values']['aes_convert']) {
-  if(variable_get("aes_convert", "true") == "false") {
-   variable_set("aes_convert", "true");
+  if (!variable_get("aes_convert", FALSE)) {
+   variable_set("aes_convert", TRUE);
    drupal_set_message(t("Creation of encrypted passwords enabled."));
   }
  }
  else {
-  if(variable_get("aes_convert", "true") == "true") {
-   variable_set("aes_convert", "false");
+  if (variable_get("aes_convert", FALSE)) {
+   variable_set("aes_convert", FALSE);
    drupal_set_message(t("Creation of encrypted passwords disabled."));
   }
  }
@@ -378,7 +378,7 @@
 }
 
 function aes_user_view($account, $view_mode, $langcode) {
-  if (user_access('view passwords') && (variable_get("aes_viewing_method", "page") == "collapsible" || variable_get("aes_viewing_method", "page") == "both") && variable_get("aes_convert", true) != "false") {
+  if (user_access('view passwords') && (variable_get("aes_viewing_method", "page") == "collapsible" || variable_get("aes_viewing_method", "page") == "both") && variable_get("aes_convert", FALSE)) {
    
    if(aes_password_exists($account->uid)) {
      $account->content['info']['aes_password'] = array(
@@ -400,7 +400,7 @@
 
 function aes_user_login(&$edit, $account) {
   
-  if (variable_get("aes_convert", "true") == "true" && aes_password_exists($account->uid) == false) {
+  if (variable_get("aes_convert", FALSE) && aes_password_exists($account->uid) == false) {
    db_insert('aes_passwords')
        ->fields(array(
          'uid' => $account->uid,
@@ -441,7 +441,7 @@
    else {
     //if this user doesn't have a password and creation of enc passwords is enabled, insert one now
     if(aes_password_exists($account->uid) == false) {
-     if(variable_get("aes_convert", "true") == "true") {
+     if(variable_get("aes_convert", FALSE)) {
       db_insert('aes_passwords')
          ->fields(array(
            'uid' => $account->uid,
Index: aes.install
--- aes.install Base (BASE)
+++ aes.install Locally Modified (Based On LOCAL)
@@ -49,7 +49,7 @@
   
   variable_set("aes_key_storage_method", "Database");
   variable_set("aes_cipher", "rijndael-128");
-  variable_set("aes_convert", "true");
+  variable_set("aes_convert", FALSE);
   variable_set("aes_viewing_method", "collapsible");
   
   $aes_implementations = aes_get_available_aes_implementations();
