10 lines
No EOL
182 B
C#
10 lines
No EOL
182 B
C#
namespace IdentityShroud.Core.Security.Keys.Aes;
|
|
|
|
public class AesKeyPolicy : KeyPolicy
|
|
{
|
|
public AesKeyPolicy()
|
|
{
|
|
KeyType = KeyType.AES;
|
|
KeySize = 256;
|
|
}
|
|
} |