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 AeadXChaCha20Poly1305Crypto : AeadCrypto
- {
- public AeadXChaCha20Poly1305Crypto(CryptoParameter parameter) : base(parameter)
- {
- }
-
- public override void Init(byte[] key, byte[] iv) => crypto = AEADCryptoCreate.XChaCha20Poly1305(key);
- }
- }
|