diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-11-13 04:31:43 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-11-13 04:31:43 +0100 |
commit | 25d561ca9aa5054896bd7c556a3efc6f4663beed (patch) | |
tree | a4e906d08feb44c13eea7421cfb63cbe575a2b8e /src | |
parent | fix bug (diff) | |
download | sha3sum-25d561ca9aa5054896bd7c556a3efc6f4663beed.tar.gz sha3sum-25d561ca9aa5054896bd7c556a3efc6f4663beed.tar.bz2 sha3sum-25d561ca9aa5054896bd7c556a3efc6f4663beed.tar.xz |
nuke...
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/sha3sum.c (renamed from java/sha3_224sum.java) | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/java/sha3_224sum.java b/src/sha3sum.c index d6717d5..ca06c1d 100644 --- a/java/sha3_224sum.java +++ b/src/sha3sum.c @@ -16,27 +16,3 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ - -import java.io.*; -import java.util.*; - - -/** - * SHA-3/Keccak checksum calculator with 224 bit output - * - * @author Mattias Andrée <a href="mailto:maandree@member.fsf.org">maandree@member.fsf.org</a> - */ -public class sha3_224sum -{ - /** - * This is the main entry point of the program - * - * @param args Command line arguments - * @throws IOException On I/O error (such as broken pipes) - */ - public static void main(String[] args) throws IOException - { - sha3sum.run("sha3-224sum", args); - } -} - |