Глядя на реализацию в Рефлектор:
public Rfc2898DeriveBytes(string password, byte[] salt) : this(password, salt, 0x3e8)
{
}
public Rfc2898DeriveBytes(string password, int saltSize, int iterations)
{
if (saltSize < 0)
{
throw new ArgumentOutOfRangeException("saltSize", Environment.GetResourceString("ArgumentOutOfRange_NeedNonNegNum"));
}
byte[] data = new byte[saltSize];
Utils.StaticRandomNumberGenerator.GetBytes(data);
this.Salt = data;
this.IterationCount = iterations;
this.m_hmacsha1 = new HMACSHA1(new UTF8Encoding(false).GetBytes(password));
this.Initialize();
}
public override byte[] GetBytes(int cb)
{
if (cb <= 0)
{
throw new ArgumentOutOfRangeException("cb", Environment.GetResourceString("ArgumentOutOfRange_NeedNonNegNum"));
}
byte[] dst = new byte[cb];
int dstOffset = 0;
int count = this.m_endIndex - this.m_startIndex;
if (count > 0)
{
if (cb < count)
{
Buffer.InternalBlockCopy(this.m_buffer, this.m_startIndex, dst, 0, cb);
this.m_startIndex += cb;
return dst;
}
Buffer.InternalBlockCopy(this.m_buffer, this.m_startIndex, dst, 0, count);
this.m_startIndex = this.m_endIndex = 0;
dstOffset += count;
}
while (dstOffset < cb)
{
byte[] src = this.Func();
int num3 = cb - dstOffset;
if (num3 > 20)
{
Buffer.InternalBlockCopy(src, 0, dst, dstOffset, 20);
dstOffset += 20;
}
else
{
Buffer.InternalBlockCopy(src, 0, dst, dstOffset, num3);
dstOffset += num3;
Buffer.InternalBlockCopy(src, num3, this.m_buffer, this.m_startIndex, 20 - num3);
this.m_endIndex += 20 - num3;
return dst;
}
}
return dst;
}
возвращает другой ключ при каждом вызове Но я узнал, что ключи возвращаются все равно – Kelvin
@Kelvin: Вы уверены, что вы используя его в том же экземпляре 'Rfc2898DeriveBytes'? Фактически невозможно увидеть те же байты, которые были возвращены при последовательных вызовах 'Rfc2898DeriveBytes.GetBytes' в том же экземпляре' Rfc2898DeriveBytes'. – jason
RijndaelManaged RijndaelAlg = новый RijndaelManaged(); строка пароль = "11111111"; Rfc2898DeriveBytes key = new Rfc2898DeriveBytes (пароль, Encoding.ASCII.GetBytes ("22222222")); RijndaelAlg.Key = key.GetBytes (RijndaelAlg.KeySize/8); байт [] a = key.GetBytes (32); для (int i = 0; i
Kelvin