gpt4 book ai didi

二进制文件中的 C# "hex shift"

转载 作者:太空宇宙 更新时间:2023-11-03 11:48:48 25 4
gpt4 key购买 nike

示例(原生 GIF header ):

GIF89a (47 49 46 38 39 61)

我想读取这个文件,并移动它的十六进制内容(--++ 模式)

FHG98` (46 48 47 39 38 60)

最佳答案

File.WriteAllBytes("output.dat", File.ReadAllBytes("input.dat")
.Select((b,i)=> (byte)(i%4 < 2 ? b-1 : b+1))
.ToArray());

关于二进制文件中的 C# "hex shift",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2636904/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com