Initial Commit

This commit is contained in:
2023-06-21 12:46:23 -04:00
commit c70248a520
1352 changed files with 336780 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
using System;
using Org.BouncyCastle.X509;
namespace iTextSharp.text.pdf {
public class PdfPublicKeyRecipient {
private X509Certificate certificate = null;
private int permission = 0;
protected byte[] cms = null;
public PdfPublicKeyRecipient(X509Certificate certificate, int permission) {
this.certificate = certificate;
this.permission = permission;
}
public X509Certificate Certificate {
get {
return certificate;
}
}
public int Permission {
get {
return permission;
}
}
protected internal byte[] Cms {
set {
cms = value;
}
get {
return cms;
}
}
}
}