Uses of Interface
org.gudy.bouncycastle.crypto.Mac
-
Packages that use Mac Package Description org.gudy.bouncycastle.crypto.engines org.gudy.bouncycastle.crypto.macs -
-
Uses of Mac in org.gudy.bouncycastle.crypto.engines
Fields in org.gudy.bouncycastle.crypto.engines declared as Mac Modifier and Type Field Description (package private) Mac
IESEngine. mac
Constructors in org.gudy.bouncycastle.crypto.engines with parameters of type Mac Constructor Description IESEngine(BasicAgreement agree, DerivationFunction kdf, Mac mac)
set up for use with stream mode, where the key derivation function is used to provide a stream of bytes to xor with the message.IESEngine(BasicAgreement agree, DerivationFunction kdf, Mac mac, BufferedBlockCipher cipher)
set up for use in conjunction with a block cipher to handle the message. -
Uses of Mac in org.gudy.bouncycastle.crypto.macs
Classes in org.gudy.bouncycastle.crypto.macs that implement Mac Modifier and Type Class Description class
HMac
HMAC implementation based on RFC2104 H(K XOR opad, H(K XOR ipad, text))
-