Mercurial > 510Connectbot
view app/src/main/java/ch/ethz/ssh2/crypto/digest/SHA512.java @ 493:0a17c6e7cb0f stable-1.9.4-3
improve Makefile
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 15 Feb 2022 14:07:00 -0800 |
parents | d29cce60f393 |
children | 7953570e5210 |
line wrap: on
line source
/* * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. * Please refer to the LICENSE.txt for licensing details. */ package ch.ethz.ssh2.crypto.digest; import java.security.DigestException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; /** * @version $Id: SHA512.java 152 2014-04-28 11:02:23Z dkocher@sudo.ch $ */ public final class SHA512 implements Digest { private MessageDigest md; public SHA512() { try { md = MessageDigest.getInstance("SHA-512"); } catch (NoSuchAlgorithmException e) { throw new IllegalArgumentException(e); } } public final int getDigestLength() { return md.getDigestLength(); } public final void reset() { md.reset(); } public final void update(byte b[]) { md.update(b); } public final void update(byte b[], int off, int len) { md.update(b, off, len); } public final void update(byte b) { md.update(b); } public final void digest(byte[] out) { md.digest(out); } public final void digest(byte[] out, int off) throws DigestException { md.digest(out, off, out.length); } }