Creates a new {@link DefaultBlockCipherService} using the specified block cipher {@code algorithmName}. Per this
class's JavaDoc, this constructor also sets the following defaults:
<ul>
<li>{@code streamingMode} = {@link OperationMode#CBC CBC}</li>
<li>{@code streamingPaddingScheme} = {@link PaddingScheme#NONE none}</li>
<li>{@code streamingBlockSize} = 8</li>
</ul>
All other attributes are null/unset, indicating the JCA Provider defaults will be used.
@param algorithmName the block cipher algorithm to use when encrypting and decrypting
Creates a new {@link DefaultBlockCipherService} using the specified block cipher {@code algorithmName}. Per this class's JavaDoc, this constructor also sets the following defaults: <ul> <li>{@code streamingMode} = {@link OperationMode#CBC CBC}</li> <li>{@code streamingPaddingScheme} = {@link PaddingScheme#NONE none}</li> <li>{@code streamingBlockSize} = 8</li> </ul> All other attributes are null/unset, indicating the JCA Provider defaults will be used.
@param algorithmName the block cipher algorithm to use when encrypting and decrypting