/// <summary>
		/// <ja>指定された実装タイプを保持しているかを返すメソッド</ja>
		/// </summary>
		public abstract bool HasImplementation (CipherImplementationType type);
		public override bool HasImplementation (CipherImplementationType type)
		{
			return type == CipherImplementationType.Balanced
				|| type == CipherImplementationType.HighSpeed;
		}
Exemple #3
0
 public override bool HasImplementation(CipherImplementationType type)
 {
     return(type == CipherImplementationType.HighSpeed);
 }
		public override bool HasImplementation (CipherImplementationType type)
		{
			return true;
		}
Exemple #5
0
 public override bool HasImplementation(CipherImplementationType type)
 {
     return(true);
 }
		public override bool HasImplementation (CipherImplementationType type)
		{
			return (type == CipherImplementationType.HighSpeed);
		}
 /// <summary>
 /// <ja>指定された実装タイプを保持しているかを返すメソッド</ja>
 /// </summary>
 public abstract bool HasImplementation(CipherImplementationType type);