本文介绍了哈希和盐串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  string  password = hash + salt 
byte [] hashsalt = hashing.ComputeHash(Encoding.UTF8.GetBytes(password));





如果要转换,代码是什么

  byte  [] hashsalt = hashing.ComputeHash(Encoding.UTF8.GetBytes(password)); 

到一个字符串变量

解决方案



string password = hash + salt
byte[] hashsalt = hashing.ComputeHash(Encoding.UTF8.GetBytes(password));



what is the code if you want convert from

byte[] hashsalt = hashing.ComputeHash(Encoding.UTF8.GetBytes(password));

to a string variable

解决方案



这篇关于哈希和盐串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 23:51