summary refs log tree commit diff
path: root/crypto/src/bcpg/AeadAlgorithmTag.cs
blob: 632f8883817c63c2943f29b62f412a136a77b032 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Org.BouncyCastle.Bcpg
{
    public enum AeadAlgorithmTag : byte
    {
        Eax = 1,    // EAX (IV len: 16 octets, Tag len: 16 octets)
        Ocb = 2,    // OCB (IV len: 15 octets, Tag len: 16 octets)
        Gcm = 3,    // GCM (IV len: 12 octets, Tag len: 16 octets)
    }
}