KWallet

blockcipher.cc
1/*
2 This file is part of the KDE project
3 SPDX-FileCopyrightText: 2001 George Staikos <staikos@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#include "blockcipher.h"
9
10BlockCipher::BlockCipher()
11{
12 _blksz = -1;
13}
14
15BlockCipher::~BlockCipher()
16{
17}
18
19int BlockCipher::blockSize() const
20{
21 return _blksz;
22}
23
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 10 2024 11:47:59 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.