SYSLIB0033 : Rfc2898DeriveBytes.CryptDeriveKey est obsolète

La méthode Rfc2898DeriveBytes.CryptDeriveKey(String, String, Int32, Byte[]) est marquée comme obsolète à compter de .NET 6. L’utilisation de cette API dans le code génère un avertissement SYSLIB0033 au moment de la compilation.

Solution de contournement

Utilisez PasswordDeriveBytes.CryptDeriveKey(String, String, Int32, Byte[]) à la place.

Supprimer un avertissement

Si vous devez utiliser les API obsolètes, vous pouvez supprimer l’avertissement dans le code ou dans votre fichier projet.

Pour supprimer une seule violation, ajoutez des directives de préprocesseur à votre fichier source pour désactiver, puis réactiver l’avertissement.

// Disable the warning.
#pragma warning disable SYSLIB0033

// Code that uses obsolete API.
// ...

// Re-enable the warning.
#pragma warning restore SYSLIB0033

Pour supprimer tous les avertissements SYSLIB0033 dans votre projet, ajoutez une propriété <NoWarn> à votre fichier projet.

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
   ...
   <NoWarn>$(NoWarn);SYSLIB0033</NoWarn>
  </PropertyGroup>
</Project>

Pour plus d’informations, consultez Supprimer des avertissements.