求助 2个 替换法 加密解密用GO写的算法

hellsam · · 1119 次点击
<a href="/user/dong-hao" title="@dong-hao">@dong-hao</a>
#3
更多评论
写个加密的,解密的,楼主自己照着比划一下吧 ``` package main import ( &#34;fmt&#34; ) func encode(s []byte, n uint8) []byte { var x []byte for i := 0; i &lt; len(s); i++ { new_pos := s[i] + n x = append(x, new_pos) } return x } func main() { var s []byte = []byte(&#34;abcdefg&#34;) fmt.Printf(&#34;%s\n&#34;, s) x := encode(s, 4) fmt.Printf(&#34;%s\n&#34;, x) } ```
#1
<a href="/user/dong-hao" title="@dong-hao">@dong-hao</a> 谢谢
#2