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.
「ABC」からsha1を取得しようとすると、PHPとNode.JSの場合と同じです。
function sha1(input) { return crypto.createHash('sha1').update(input).digest('hex'); };
しかし、「ЭЮЯЁ」のようなキリル文字のハッシュを取得しようとすると、そうではありません。
修正方法は?