-
Notifications
You must be signed in to change notification settings - Fork 956
Closed
Description
For some reason, reordering fields in the output of sops -e
causes the data to be unable to be decrypted by sops -d
. Relying on the ordering of fields in a YAML document is incorrect usage, so this is clearly a bug.
➜ cat << EOF > input.yaml
foo: foo1
bar: bar1
EOF
➜ sops -e --kms=... input.yaml > output.yaml
➜ head -2 output.yaml
foo: ENC[AES256_GCM,data:iDIDaw==,iv:VEUE0K3YABM19whbUUVlkdPj65rqN3LvI0aV2jtNSyQ=,tag:Ub6s2QS71gNeoMG8BxCGEg==,type:str]
bar: ENC[AES256_GCM,data:r7UCvw==,iv:0o97dpfHoNmWHo4aE5DcO32dMi8JHiMpa7Zqw827CQk=,tag:hgwyHLQQvALX+9nMKomKhA==,type:str]
➜ sops -d output.yaml
foo: foo1
bar: bar1
➜ # Flip order of foo and bar in output.yaml
➜ head -2 output.yaml
bar: ENC[AES256_GCM,data:r7UCvw==,iv:0o97dpfHoNmWHo4aE5DcO32dMi8JHiMpa7Zqw827CQk=,tag:hgwyHLQQvALX+9nMKomKhA==,type:str]
foo: ENC[AES256_GCM,data:iDIDaw==,iv:VEUE0K3YABM19whbUUVlkdPj65rqN3LvI0aV2jtNSyQ=,tag:Ub6s2QS71gNeoMG8BxCGEg==,type:str]
➜ sops -d output.yaml
MAC mismatch. File has 91F96DCE270B5CFA8909310CAAD8436E0ADFDB329BC5ED98FC11D3A8D7FE20844CF3E97D07C5547B6956DA34E00DD9686F6EA473C9BB1A14C1FB49AB300FA2C0, computed 3E8BC683F1CD809CF86E6C05504D12D1BDA2C43A23FE2A7AAEF2A5A1E19F55FF4A754D643E8F7F33A739F2462120DCA995AC75B59D36E5A80FF91DACB4560A75
Metadata
Metadata
Assignees
Labels
No labels