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.
47 lines
1.1 KiB
47 lines
1.1 KiB
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters |
|
{ |
|
public class KeyParameter |
|
: ICipherParameters |
|
{ |
|
private readonly byte[] key; |
|
|
|
public KeyParameter( |
|
byte[] key) |
|
{ |
|
if (key == null) |
|
throw new ArgumentNullException("key"); |
|
|
|
this.key = (byte[]) key.Clone(); |
|
} |
|
|
|
public KeyParameter( |
|
byte[] key, |
|
int keyOff, |
|
int keyLen) |
|
{ |
|
if (key == null) |
|
throw new ArgumentNullException("key"); |
|
if (keyOff < 0 || keyOff > key.Length) |
|
throw new ArgumentOutOfRangeException("keyOff"); |
|
if (keyLen < 0 || keyLen > (key.Length - keyOff)) |
|
throw new ArgumentOutOfRangeException("keyLen"); |
|
|
|
this.key = new byte[keyLen]; |
|
Array.Copy(key, keyOff, this.key, 0, keyLen); |
|
} |
|
|
|
public byte[] GetKey() |
|
{ |
|
return (byte[]) key.Clone(); |
|
} |
|
} |
|
|
|
} |
|
#pragma warning restore |
|
#endif
|
|
|