File indexing completed on 2024-06-16 03:53:03

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 2001 George Staikos <staikos@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #include "blockcipher.h"
0009 
0010 BlockCipher::BlockCipher()
0011 {
0012     _blksz = -1;
0013 }
0014 
0015 BlockCipher::~BlockCipher()
0016 {
0017 }
0018 
0019 int BlockCipher::blockSize() const
0020 {
0021     return _blksz;
0022 }
0023