Sha256: 56789baf17cf10ec7b47b5339ed3ae022389db132baaed86443dce4d66ea3bf5
Contents?: true
Size: 480 Bytes
Versions: 19
Compression:
Stored size: 480 Bytes
Contents
/** * IStreamCipher * * A "marker" interface for stream ciphers. * Copyright (c) 2007 Henri Torgemane * * See LICENSE.txt for full license information. */ package com.hurlant.crypto.symmetric { /** * A marker to indicate how this cipher works. * A stream cipher: * - does not use initialization vector * - keeps some internal state between calls to encrypt() and decrypt() * */ public interface IStreamCipher extends ICipher { } }
Version data entries
19 entries across 19 versions & 4 rubygems