You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
625 B
16 lines
625 B
using System;
|
|
|
|
using Org.BouncyCastle.Asn1.Nist;
|
|
|
|
namespace Org.BouncyCastle.Cms
|
|
{
|
|
internal class CmsAuthEnvelopedGenerator
|
|
{
|
|
public static readonly string Aes128Ccm = NistObjectIdentifiers.IdAes128Ccm.Id;
|
|
public static readonly string Aes192Ccm = NistObjectIdentifiers.IdAes192Ccm.Id;
|
|
public static readonly string Aes256Ccm = NistObjectIdentifiers.IdAes256Ccm.Id;
|
|
public static readonly string Aes128Gcm = NistObjectIdentifiers.IdAes128Gcm.Id;
|
|
public static readonly string Aes192Gcm = NistObjectIdentifiers.IdAes192Gcm.Id;
|
|
public static readonly string Aes256Gcm = NistObjectIdentifiers.IdAes256Gcm.Id;
|
|
}
|
|
}
|
|
|