You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using CryptoBase;
-
- namespace Shadowsocks.Protocol.Shadowsocks.Crypto
- {
- public class AeadAesGcmCrypto : AeadCrypto
- {
- public AeadAesGcmCrypto(CryptoParameter parameter) : base(parameter)
- {
- }
-
- public override void Init(byte[] key, byte[] iv) => crypto = AEADCryptoCreate.AesGcm(key);
- }
- }
|