Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
入力が文字列で、出力がバイナリ文字列であるハッシュ アルゴリズムを探しています。
例えば :
hash("abc",8) = 11001010 //8 is the output bits number
そのようなハッシュ関数を見つけることができません。
c#
string str = "Hello"; byte []arr = System.Text.Encoding.ASCII.GetBytes(str);