1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- using Org.BouncyCastle.Crypto;
- namespace Org.BouncyCastle.Crypto.Parameters
- {
-
- public class IesParameters : ICipherParameters
- {
- private byte[] derivation;
- private byte[] encoding;
- private int macKeySize;
-
- public IesParameters(
- byte[] derivation,
- byte[] encoding,
- int macKeySize)
- {
- this.derivation = derivation;
- this.encoding = encoding;
- this.macKeySize = macKeySize;
- }
- public byte[] GetDerivationV()
- {
- return derivation;
- }
- public byte[] GetEncodingV()
- {
- return encoding;
- }
- public int MacKeySize
- {
- get
- {
- return macKeySize;
- }
- }
- }
- }
- #endif
|