Bu benim PHP kodu:
hash_hmac( "sha256", utf8_encode( $filename ), utf8_encode( $password ) );
ve bu benim C # kodu:
var hmacsha256 = new HMACSHA256( Encoding.UTF8.GetBytes( password ) );
hmacsha256.ComputeHash( Encoding.UTF8.GetBytes( filename ) );
ne yazık ki hem sonuçlar farklı. Herkes bana bir ipucu verebilir misiniz?