1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
package plaintext
import (
"fmt"
"github.com/go-crypt/crypt/algorithm"
"github.com/go-crypt/crypt/internal/encoding"
)
// RegisterDecoder the decoder with the algorithm.DecoderRegister.
func RegisterDecoder(r algorithm.DecoderRegister) (err error) {
if err = RegisterDecoderPlainText(r); err != nil {
return err
}
if err = r.RegisterDecodeFunc(AlgIdentifierBase64, Decode); err != nil {
return err
}
return nil
}
// RegisterDecoderPlainText registers specifically the plaintext decoder variant with the algorithm.DecoderRegister.
func RegisterDecoderPlainText(r algorithm.DecoderRegister) (err error) {
if err = r.RegisterDecodeFunc(VariantPlainText.Prefix(), DecodeVariant(VariantPlainText)); err != nil {
return err
}
return nil
}
// RegisterDecoderBase64 registers specifically the base64 decoder variant with the algorithm.DecoderRegister.
func RegisterDecoderBase64(r algorithm.DecoderRegister) (err error) {
if err = r.RegisterDecodeFunc(VariantBase64.Prefix(), DecodeVariant(VariantBase64)); err != nil {
return err
}
return nil
}
// Decode the encoded digest into a algorithm.Digest.
func Decode(encodedDigest string) (digest algorithm.Digest, err error) {
return DecodeVariant(VariantNone)(encodedDigest)
}
// DecodeVariant the encoded digest into a algorithm.Digest provided it matches the provided plaintext.Variant. If
// plaintext.VariantNone is used all variants can be decoded.
func DecodeVariant(v Variant) func(encodedDigest string) (digest algorithm.Digest, err error) {
return func(encodedDigest string) (digest algorithm.Digest, err error) {
var (
parts []string
variant Variant
)
if variant, parts, err = decoderParts(encodedDigest); err != nil {
return nil, fmt.Errorf(algorithm.ErrFmtDigestDecode, AlgName, err)
}
if v != VariantNone && v != variant {
return nil, fmt.Errorf(algorithm.ErrFmtDigestDecode, AlgName, fmt.Errorf("the '%s' variant cannot be decoded only the '%s' variant can be", variant.Prefix(), v.Prefix()))
}
if digest, err = decode(variant, parts); err != nil {
return nil, fmt.Errorf(algorithm.ErrFmtDigestDecode, AlgName, err)
}
return digest, nil
}
}
func decoderParts(encodedDigest string) (variant Variant, parts []string, err error) {
parts = encoding.Split(encodedDigest, 3)
if len(parts) != 3 {
return VariantNone, nil, algorithm.ErrEncodedHashInvalidFormat
}
variant = NewVariant(parts[1])
if variant == VariantNone {
return variant, nil, fmt.Errorf("%w: identifier '%s' is not an encoded %s digest", algorithm.ErrEncodedHashInvalidIdentifier, parts[1], AlgName)
}
return variant, parts[2:], nil
}
func decode(variant Variant, parts []string) (digest algorithm.Digest, err error) {
decoded := &Digest{
variant: variant,
}
if decoded.key, err = decoded.variant.Decode(parts[0]); err != nil {
return nil, fmt.Errorf("%w: %v", algorithm.ErrEncodedHashKeyEncoding, err)
}
if len(decoded.key) == 0 {
return nil, fmt.Errorf("%w: key has 0 bytes", algorithm.ErrEncodedHashKeyEncoding)
}
return decoded, nil
}
|