# File lib/merb-auth-more/mixins/bcrypt_user.rb, line 61
        def encrypt_password
          return if password.blank?
          cost =  Merb::Plugins.config["merb-auth""merb-auth"][:bcrypt_cost] || BCrypt::Engine::DEFAULT_COST
          self.crypted_password =  BCrypt::Password.create(password, :cost => cost)
        end