//--------------------------------------------------------------------------------------- // Copyright (c) 2001-2025 by Apryse Software Inc. All Rights Reserved. // Consult legal.txt regarding legal and license information. //--------------------------------------------------------------------------------------- #ifndef PDFTRON_H_CPPCryptoAlgorithmParams #define PDFTRON_H_CPPCryptoAlgorithmParams #include #include #include #include namespace pdftron { namespace Crypto { /** * Base class for AlgorithmIdentifier parameters. */ class AlgorithmParams { public: AlgorithmParams(); AlgorithmParams(const AlgorithmParams& other); AlgorithmParams& operator= (const AlgorithmParams& other); virtual ~AlgorithmParams(); #ifndef SWIGHIDDEN AlgorithmParams(TRN_AlgorithmParams impl); TRN_AlgorithmParams m_impl; #endif protected: void Destroy(); #ifndef SWIGHIDDEN mutable bool m_owner; #endif }; #include } //end pdftron } //end Crypto #endif //PDFTRON_H_CPPCryptoAlgorithmParams