Interface SymmetricAlgorithm, source in 28
Source242526272829metadata in 28
src/System Application/App/Cryptography Management/src/SymmetricAlgorithm.Interface.al24 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Security.Encryption;
/// <summary>
/// Interface defines methods which all implementations of symmetric algorithms must inherit.
/// </summary>
interface SymmetricAlgorithm
{
/// <summary>
/// Initializes a new instance of the SymmetricAlgorithm.
/// </summary>
procedure GetInstance(var DotNetSymmetricAlgorithm: DotNet "Cryptography.SymmetricAlgorithm");
/// <summary>
/// Returns Url of the encrypment method used
/// </summary>
/// <returns>An string containing the encrypment method Url.</returns>
procedure XmlEncrypmentMethodUrl(): Text;
}