Interface SignatureAlgorithm
- App
- System Application
- Namespace
- System.Security.Encryption
- Versions
- 17-26, not in 28
- Obsolete
- Pending 24.0, seen from 24. Replaced by Signature Algorithm v2 with SecretText support for XmlString.
Versions171819202122232425262728
Source in 26
src/System Application/App/Cryptography Management/src/SignatureAlgorithm.Interface.al23 lines, Copyright (c) Microsoft Corporation. MIT
#if not CLEAN24
// ------------------------------------------------------------------------------------------------
// 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;
using System;
interface SignatureAlgorithm
{
ObsoleteReason = 'Replaced by Signature Algorithm v2 with SecretText support for XmlString.';
ObsoleteState = Pending;
ObsoleteTag = '24.0';
procedure GetInstance(var DotNetAsymmetricAlgorithm: DotNet AsymmetricAlgorithm);
procedure FromXmlString(XmlString: Text);
procedure SignData(DataInStream: InStream; HashAlgorithm: Enum "Hash Algorithm"; SignatureOutStream: OutStream);
procedure ToXmlString(IncludePrivateParameters: Boolean): Text;
procedure VerifyData(DataInStream: InStream; HashAlgorithm: Enum "Hash Algorithm"; SignatureInStream: InStream): Boolean;
}
#endif