IsEncrypted
Get encrypted status of PDF-document.
func (document *Document) IsEncrypted() (bool, error)
Parameters:
Return:
- bool - the document is encrypted
- error - contains an error or nil if absent
Example:
package main
import "github.com/aspose-pdf/aspose-pdf-go-cpp"
import "log"
import "fmt"
func main() {
// OpenWithPassword(filename string, password string) opens a password-protected PDF-document
pdf, err := asposepdf.OpenWithPassword("sample_with_password.pdf", "ownerpass")
if err != nil {
log.Fatal(err)
}
// Close() releases allocated resources for PDF-document
defer pdf.Close()
// IsEncrypted() gets encrypted status of PDF-document
isEnc, _ := pdf.IsEncrypted()
if isEnc {
fmt.Println("IsEncrypted() is true")
}
}