net.schmizz.sshj.transport.mac
Interface MAC
- All Known Implementing Classes:
- BaseMAC, HMACMD5, HMACMD596, HMACSHA1, HMACSHA196
public interface MAC
Message Authentication Code for use in SSH. It usually wraps a javax.crypto.Mac class.
doFinal
byte[] doFinal()
doFinal
byte[] doFinal(byte[] input)
doFinal
void doFinal(byte[] buf,
int offset)
getBlockSize
int getBlockSize()
init
void init(byte[] key)
update
void update(byte[] foo)
update
void update(byte[] foo,
int start,
int len)
update
void update(long foo)
Copyright © 2009-2012. All Rights Reserved.