Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# DeadHash

DeadHash is a freeware utility to calculate file and text hashes. The following hash calculations are supported:
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
alt="Get it on F-Droid"
height="80">](https://f-droid.org/packages/com.codedead.deadhash/)
[<img src="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png"
alt="Get it on Google Play"
height="80">](https://play.google.com/store/apps/details?id=com.codedead.deadhash)

DeadHash is a freeware utility to calculate file and text hashes.

## Features

The following hash calculations are supported:
* MD5
* SHA-1
* SHA-224
Expand All @@ -10,19 +21,11 @@ DeadHash is a freeware utility to calculate file and text hashes. The following
* SHA-512
* CRC32

[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
alt="Get it on F-Droid"
height="80">](https://f-droid.org/packages/com.codedead.deadhash/)
[<img src="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png"
alt="Get it on Google Play"
height="80">](https://play.google.com/store/apps/details?id=com.codedead.deadhash)

## About

This library is maintained by CodeDead. You can find more about us using the following links:
* [Website](https://codedead.com)
* [Twitter](https://twitter.com/C0DEDEAD)
* [Facebook](https://facebook.com/deadlinecodedead)
* [Reddit](https://reddit.com/r/CodeDead/)

Copyright © 2022 CodeDead
10 changes: 8 additions & 2 deletions app/src/main/res/layout/content_text.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,15 @@
android:importantForAutofill="no"
android:inputType="text" />
</TableRow>
</TableLayout>

<TableRow>
<TableLayout
android:id="@+id/layout_compare"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/layout_text">

<TableRow>
<TextView
android:id="@+id/Text_FileCompare"
android:layout_width="wrap_content"
Expand All @@ -57,7 +63,7 @@
style="@style/Widget.AppCompat.Button.Colored"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/layout_text"
android:layout_below="@+id/layout_compare"
android:layout_alignParentEnd="true"
android:text="@string/button_generate">

Expand Down