I'm trying to replicate a C# piece of code in PHP and can't figure out this next line:
var digestBytes = new byte[nonceBytes.Length + createdBytes.Length + passwordBytes.Length];
Is there any new byte[length]
equivalent for PHP?
Thanks in advance!