1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.IdentityModel.Tokens
{
public abstract class SecurityKey
{
public abstract int KeySize { get; }
public abstract byte[] DecryptKey(string algorithm, byte[] keyData);
public abstract byte[] EncryptKey(string algorithm, byte[] keyData);
public abstract bool IsAsymmetricAlgorithm(string algorithm);
public abstract bool IsSupportedAlgorithm(string algorithm);
public abstract bool IsSymmetricAlgorithm(string algorithm);
}
}
|