Mercurial > 510Connectbot
view app/src/main/java/ch/ethz/ssh2/crypto/digest/SHA1.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 |
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: SHA1.java 154 2014-04-28 11:45:02Z dkocher@sudo.ch $ */ public final class SHA1 implements Digest { private MessageDigest md; public SHA1() { try { md = MessageDigest.getInstance("SHA-1"); } 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[]) { this.update(b, 0, b.length); } 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) throws DigestException { this.digest(out, 0); } public final void digest(byte[] out, int off) throws DigestException { md.digest(out, off, out.length); } }