Example #1
0
 public bool SetKey(byte[] input, CryptoLib.Algorithm a)
 {
     return(base.Channel.SetKey(input, a));
 }
Example #2
0
 public System.Threading.Tasks.Task <byte[]> DeCryptAsync(byte[] input, CryptoLib.Algorithm a)
 {
     return(base.Channel.DeCryptAsync(input, a));
 }
Example #3
0
 public byte[] DeCrypt(byte[] input, CryptoLib.Algorithm a)
 {
     return(base.Channel.DeCrypt(input, a));
 }
Example #4
0
 public System.Threading.Tasks.Task <bool> SetPropertiesAsync(System.Collections.Generic.Dictionary <string, byte[]> specArguments, CryptoLib.Algorithm a)
 {
     return(base.Channel.SetPropertiesAsync(specArguments, a));
 }
Example #5
0
 public bool SetProperties(System.Collections.Generic.Dictionary <string, byte[]> specArguments, CryptoLib.Algorithm a)
 {
     return(base.Channel.SetProperties(specArguments, a));
 }
Example #6
0
 public System.Threading.Tasks.Task <bool> SetKeyAsync(byte[] input, CryptoLib.Algorithm a)
 {
     return(base.Channel.SetKeyAsync(input, a));
 }