PDFTool.NET 7.0
NetEncryptPubKey.h
1
10#ifndef PDFTK_NET_PTLENCRYPT_PUBKEY_H_
11#define PDFTK_NET_PTLENCRYPT_PUBKEY_H_
12
13#include <PdfTkNet/NetTk.h>
14#include <PdfTkNet/NetEncrypt.h>
15
16namespace PdfTkNet {
17
18ref class PtlRecipients;
19
24
25public ref class PtlEncryptPubKey : public PtlEncrypt
26{
27public:
34
38 enum class PUBSEC_METHOD_TYPE {
41 };
42
43public:
52
59
64
69
70public:
76
77public:
84
91
100};
101
102} // namespace PdfTkNet
103
104#endif // PDFTK_NET_PTLENCRYPT_PUBKEY_H_
PtlEncrypt(FILTER_TYPE filterType)
コンストラクタ
PtlEncryptPubKey(PUBSEC_FILER_TYPE filter, int keyLength, PUBSEC_METHOD_TYPE method)
コンストラクタ
PUBSEC_METHOD_TYPE
公開キーセキュリティハンドラのメソッドタイプ
Definition NetEncryptPubKey.h:38
@ METHOD_AES
AES.
Definition NetEncryptPubKey.h:40
@ METHOD_RC4
RC4.
Definition NetEncryptPubKey.h:39
PUBSEC_FILER_TYPE
公開キーセキュリティハンドラのフィルタータイプ
Definition NetEncryptPubKey.h:31
@ FILTER_ADOBE_PUBSEC
Adobe.PubSec.
Definition NetEncryptPubKey.h:32
PtlEncryptPubKey operator=(PtlEncryptPubKey^ obj)
コピーオペレータ
PtlRecipients getRecipients()
受信者コンテナを取得。
PtlEncryptPubKey(PtlEncryptPubKey^ obj)
コピーコンストラクタ
virtual ‾PtlEncryptPubKey()
デストラクタ
void setMethod(PUBSEC_METHOD_TYPE method)
公開キーセキュリティハンドラのメソッドを設定。
PUBSEC_METHOD_TYPE getMethod()
公開キーセキュリティハンドラのメソッドを取得。
証明書受信者のコンテナを表現するクラスです。
Definition NetRecipients.h:24