Uses of Interface
org.cryptacular.codec.Encoder
Packages that use Encoder
-
Uses of Encoder in org.cryptacular
Methods in org.cryptacular with parameters of type EncoderModifier and TypeMethodDescriptionSaltedHash.concatenateSalt
(boolean toEnd, Encoder encoder) Gets an encoded string of the concatenation of digest output and salt. -
Uses of Encoder in org.cryptacular.codec
Classes in org.cryptacular.codec that implement EncoderModifier and TypeClassDescriptionclass
Base encoder class for encoding schemes described in RFC 3548.class
Stateful base 32 encoder with support for configurable line breaks.class
Stateful base 64 encoder with support for configurable line breaks.class
Stateless hexadecimal byte-to-character encoder.Methods in org.cryptacular.codec that return EncoderModifier and TypeMethodDescriptionBase32Codec.getEncoder()
Base64Codec.getEncoder()
Codec.getEncoder()
HexCodec.getEncoder()
Base32Codec.newEncoder()
Base64Codec.newEncoder()
Codec.newEncoder()
HexCodec.newEncoder()
-
Uses of Encoder in org.cryptacular.io
Constructors in org.cryptacular.io with parameters of type EncoderModifierConstructorDescriptionEncodingOutputStream
(OutputStream out, Encoder e) Creates a new instance that wraps the given stream and performs encoding using the given encoder component. -
Uses of Encoder in org.cryptacular.util
Methods in org.cryptacular.util with parameters of type Encoder