{% extends "base.html" %} {% block title %}{{ algorithm_name }} {% trans %}Hash Result{% endtrans %} | OnlineConvert.cc{% endblock %} {% block description %}{% trans algo=algorithm_name %}Your {{ algo }} hash has been generated successfully{% endtrans %}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %} {% set _oh_hero_type = site.get('hero_bg_type', 'gradient') if site is defined else 'gradient' %} {% set _hero_img = site.get('hero_bg_image', '') if site is defined else '' %} {% set _hero_lcl = (site.get('hero_img_left_color_light', '#1e3a5f') if site is defined) or '#1e3a5f' %} {% set _hero_lcd = (site.get('hero_img_left_color_dark', '#0f172a') if site is defined) or '#0f172a' %}
{% if _oh_hero_type == 'image' %} {% endif %} {% if _oh_hero_type == 'gradient' %}
{% elif _oh_hero_type == 'image' and _hero_img %}
{% endif %}
{% trans %}HASH RESULT{% endtrans %}

{{ algorithm_name }} {% trans %}Generated{% endtrans %}

{% trans %}Your hash has been computed successfully. Copy the results below.{% endtrans %}

{% if error and error.message %}
{{ error.message }}
{% endif %} {% if results2 and results2|length > 0 %}
{% trans %}Hash Generated Successfully!{% endtrans %}
{{ algorithm_name }} · Multiple formats available
{% for result in results2 %} {% set parts = result.split(': ', 1) %} {% set full_label = parts[0] %} {% set hash_value = parts[1] if parts|length > 1 else parts[0] %} {# Parse input source and format type #} {% if '(' in full_label %} {% set input_source = full_label.split(' (')[0] %} {% set format_type = full_label.split(' (')[1]|replace(')', '') %} {% else %} {% set input_source = full_label %} {% set format_type = 'original' %} {% endif %}
{# Icon based on input source #} {% if 'Text input' in input_source %}
{% else %}
{% endif %} {{ input_source }} {# Format badge #} {% if format_type == 'original' %} HEX {% elif format_type == 'HEX uppercase' %} {% trans %}UPPERCASE{% endtrans %} {% elif format_type == 'HEX with colons' %} {% trans %}COLONS{% endtrans %} {% elif format_type == 'Base64' %} {% trans %}BASE64{% endtrans %} {% endif %}
{{ algorithm_name }}
{{ hash_value }}
{% endfor %}
{% trans %}Hash Another{% endtrans %}
{% else %}

{% trans %}No Results{% endtrans %}

{% trans %}No hash results were generated. Please try again.{% endtrans %}

{% trans %}Try Again{% endtrans %}
{% endif %}

{{ algorithm_name }}

{% trans %}Hash Algorithm{% endtrans %}

{% if supports_hmac %} {% trans %}HMAC Supported{% endtrans %} {% elif supports_salt %} {% trans %}Salt Supported{% endtrans %} {% else %} {% trans %}Standard Hash{% endtrans %} {% endif %}

{% trans %}Authentication{% endtrans %}

{% trans %}Secure{% endtrans %}

{% trans %}Server-side processing{% endtrans %}

{% trans %}Copied to clipboard{% endtrans %}
{% endblock %} {% block footer %} {{ super() }} {% endblock %} {% block faq_java %} {% endblock %}