有一个关于byte[] 的长度问题。 public static string CreateSalt(int size) { RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider(); byte[] buff = new byte[size]; rng.GetBytes(buff); return Convert.ToBase64String(buff);//返回Base64字符串表示形式的随机数 }我给size指定是8,为什么返回的是一个12位的字符串??
- 2 回答
- 0 关注
- 975 浏览
添加回答
举报
0/150
提交
取消