# Functions
Decode the encoded digest into a algorithm.Digest.
DecodeVariant the encoded digest into a algorithm.Digest provided it matches the provided Variant.
New returns a *md5crypt.Hasher with the additional opts applied if any.
NewVariant converts an identifier string to a md5crypt.Variant.
RegisterDecoder the decoder with the algorithm.DecoderRegister.
RegisterDecoderCommon registers specifically the common decoder variant with the algorithm.DecoderRegister.
RegisterDecoderSun registers specifically the sun decoder variant with the algorithm.DecoderRegister.
WithIterations sets the iterations parameter of the resulting md5crypt.Digest.
WithRounds is an alias for md5crypt.WithIterations.
WithSaltLength adjusts the salt size (in bytes) of the resulting md5crypt.Digest.
WithVariant is used to configure the md5crypt.Variant of the resulting md5crypt.Digest.
WithVariantName uses the variant name or identifier to configure the md5crypt.Variant of the resulting md5crypt.Digest.
# Constants
AlgIdentifier is the identifier used in this algorithm.
AlgIdentifierVariantSun is the identifier used in this algorithm when using md5crypt.VariantSun.
AlgName is the name for this algorithm.
EncodingFmt is the encoding format for this algorithm.
EncodingFmtSun is the encoding format for this algorithm when using md5crypt.VariantSun.
EncodingFmtSunIterations is the encoding format for this algorithm when using md5crypt.VariantSun and iterations more than 0.
IterationsDefault is the default iterations.
IterationsMax is the maximum iterations accepted.
IterationsMin is the minimum iterations accepted.
SaltCharSet are the valid characters for the salt.
SaltLengthDefault is the default salt size.
SaltLengthMax is the maximum salt size accepted.
SaltLengthMin is the minimum salt size accepted.
VariantNameStandard is the md5crypt.Variant name for md5crypt.VariantStandard.
VariantNameSun is the md5crypt.Variant name for md5crypt.VariantSun.
VariantNone is a variant of the md5crypt.Digest which is unknown.
VariantStandard is a variant of the md5crypt.Digest which uses the standard md5crypt format.
VariantSun is a variant of the md5crypt.Digest designed at Sun.