as3crypto is actionscript 3 crypto library with TLS engine support. From: http://github.com/lyokato/as3crypto_patched Which was forked from: http://code.google.com/p/as3crypto/
15 lines
315 B
ActionScript
15 lines
315 B
ActionScript
/**
|
|
* IMode
|
|
*
|
|
* An interface for confidentiality modes to implement
|
|
* This could become deprecated at some point.
|
|
* Copyright (c) 2007 Henri Torgemane
|
|
*
|
|
* See LICENSE.txt for full license information.
|
|
*/
|
|
package com.hurlant.crypto.symmetric
|
|
{
|
|
public interface IMode extends ICipher
|
|
{
|
|
}
|
|
} |