Convert Text
(type= String
) To Binary
(type= String
) And Conversely
Using Goが欲しい
いくつかのユーザーフルリンク : Golang: 文字列をバイナリ表現に変換する方法& Go で文字列をバイナリに変換する方法
しかし、私は別のものを必要としています。
hello
のようなテキストを変換する例が必要ですbinary
。次に、バイナリを最初の text( hello
) に変換できます。
var hash_text := hash("hello")//example return *****
var unhash_text := unhash(hash_text);//return hello
このように gist.github.com/hutt/8978333 (php を使用)
speed
私にとってもですimportamt
。