Hi,

I'm trying to port the iTextSharp 5.1.2 to CF 3.5 for windows CE but I
have some problems.

One of them is the Font management, and another is when I call
Document.Close() method:

In PdfEncryption.cs line 708:

public static byte[] DigestComputeHash(string algo, byte[] b, int
offset, int len) {
    IDigest d = DigestUtilities.GetDigest(algo);
    d.BlockUpdate(b, offset, len);
    byte[] r = new byte[d.GetDigestSize()];
    d.DoFinal(r, 0);
    return r;
}

I get a TypeLoadException.

Have someone use it in CF or interested to do it?
Any suggestions?

Regards,
Daniele.

------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

iText(R) is a registered trademark of 1T3XT BVBA.
Many questions posted to this list can (and will) be answered with a reference 
to the iText book: http://www.itextpdf.com/book/
Please check the keywords list before you ask for examples: 
http://itextpdf.com/themes/keywords.php

Reply via email to