Skip to content

Tag: digital-signature

lock pdf with itext after sign

I need to lock a pdf after applying a signature, I need the output file to look like this one: locked as you can see it says “locked by signature”, I tried adding the lock like this when I get the pdf signature appearance: but all I have got in return is this: mine only a message that says “…

How to determine if an apk is signed in Java?

I’m building an Java Android App in Android Studio. In my onCreate function I wand to determine if the App has been build with or without a certificate. But by now, I get no Certificate Information at all. output: Answer You have to use getPackageInfo instead of getPackageArchiveInfo. When you do so, ge…

Digital signatures attached to the file

I need to implement digital signatures to my web app. I followed this and this example, and have successfully signed and verified given file. My questions are regarding the flow: I can export the signature, so what should I do with the signature? Save it in the database? If I attach signature to the file usin…