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

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