新手请问一个go语言的信息隐藏实验

z769018860 · · 2232 次点击 · 开始浏览    置顶
这是一个创建于 的主题,其中的信息可能已经有所发展或是发生改变。

大体框架有了但是缺一些核心代码 刚刚接触go语言感觉还不太能读懂这个框架的意思 http://csintro.ucas.ac.cn/static/code_project/hide.go 主要是中间需要填写四个函数 第一个_4byte2int不太明白是什么作用,应该怎么写 后面有两个函数给了伪代码, ``` Procedure HideText (pixel_array) { content = read all bytes of text file length = length of the content insert_data(length, pixel_array[0:16], 16) for i = 0 to len(content)-1 { v = content[i] // the offset of pixel array offset = 16+i*4 // the corresponding slice that will be used insert_data(byte, pixel_array[offset: offset+4], 4) } } // hide the integer data into the byte slice // using the first n bytes of the slice Procedure insert_data(data, byte_slice, n) { for i = 0 to n-1 { _2bit = data & 0x3 byte_slice[i] = byte_slice[i] & 0xFC byte_slice[i] = byte_slice[i] | _2bit data = data >> 2 } } Procedure ShowText (pixel_array) { length = restore_data(pixel_array[0:16], 16) content = create a byte slice with the specific length for i = 0 to length-1 { // the offset of pixel array offset = 16+i*4 // the corresponding slice that will be translated to a byte content[i] = restore_data(pixel_array[offset: offset+4], 4) } } // restore the integer data from the byte slice // using the first n bytes of the slice Procedure restore_data(byte_slice, n) { data = 0 for i = n-1 to 0 { _2bit = byte_slice[i] & 0x3 data = data << 2 data = data | _2bit } } ``` 对应的是后两个函数,但是伪代码里面调用函数时的变量类型都不同_(:зゝ∠)_然后就又不知道怎么下手了

有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2232 次点击  
加入收藏 微博
5 回复  |  直到 2018-06-28 21:07:24
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传