Можно ли использовать эту функцию PostgreSQL crypt('<password>', gen_salt('bf'))
при обновлении пароля пользователя с помощью приведенного ниже кода?
def update
@player = Player.find(params[:id])
respond_to do |format|
if @player.update_attributes(params[:player])
flash[:notice] = 'Player was successfully updated.'
format.html { redirect_to(@player) }
format.xml { head :ok }
else
format.html { render :action => "edit" }
format.xml { render :xml => @player.errors, :status => :unprocessable_entity }
end
end
end