mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-01 09:24:55 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
41 lines
548 B
C++
41 lines
548 B
C++
//
|
|
// CryptoTransform.cpp
|
|
//
|
|
// $Id: //poco/1.4/Crypto/src/CryptoTransform.cpp#2 $
|
|
//
|
|
// Library: Crypto
|
|
// Package: Cipher
|
|
// Module: CryptoTransform
|
|
//
|
|
// Copyright (c) 2008, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Crypto/CryptoTransform.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Crypto {
|
|
|
|
|
|
CryptoTransform::CryptoTransform()
|
|
{
|
|
}
|
|
|
|
|
|
CryptoTransform::~CryptoTransform()
|
|
{
|
|
}
|
|
|
|
|
|
int CryptoTransform::setPadding(int padding)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Crypto
|