/* * Copyright (C)2009 - SSHJ Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.schmizz.sshj.transport.mac; import net.schmizz.sshj.common.SSHRuntimeException; import net.schmizz.sshj.common.SecurityUtils; import javax.crypto.ShortBufferException; import javax.crypto.spec.SecretKeySpec; import java.security.GeneralSecurityException; /** Base class for <code>MAC</code> implementations based on the JCE provider. */ public class BaseMAC implements MAC { private final String algorithm; private final int defbsize; private final int bsize; private final byte[] tmp; private javax.crypto.Mac mac; public BaseMAC(String algorithm, int bsize, int defbsize) { this.algorithm = algorithm; this.bsize = bsize; this.defbsize = defbsize; tmp = new byte[defbsize]; } @Override public byte[] doFinal() { return resizeToHashSize(mac.doFinal()); } @Override public byte[] doFinal(byte[] input) { return resizeToHashSize(mac.doFinal(input)); } @Override public void doFinal(byte[] buf, int offset) { try { if (bsize != defbsize) { mac.doFinal(tmp, 0); System.arraycopy(tmp, 0, buf, offset, bsize); } else mac.doFinal(buf, offset); } catch (ShortBufferException e) { throw new SSHRuntimeException(e); } } private byte[] resizeToHashSize(byte[] buf) { if (bsize == defbsize) return buf; byte[] result = new byte[bsize]; System.arraycopy(buf, 0, result, 0, bsize); return result; } @Override public int getBlockSize() { return bsize; } @Override public void init(byte[] key) { if (key.length > defbsize) { byte[] tmp = new byte[defbsize]; System.arraycopy(key, 0, tmp, 0, defbsize); key = tmp; } SecretKeySpec skey = new SecretKeySpec(key, algorithm); try { mac = SecurityUtils.getMAC(algorithm); mac.init(skey); } catch (GeneralSecurityException e) { throw new SSHRuntimeException(e); } } @Override public void update(byte foo[], int s, int l) { mac.update(foo, s, l); } @Override public void update(byte[] foo) { mac.update(foo, 0, foo.length); } @Override public void update(long i) { tmp[0] = (byte) (i >>> 24); tmp[1] = (byte) (i >>> 16); tmp[2] = (byte) (i >>> 8); tmp[3] = (byte) i; update(tmp, 0, 4); } }