Top "Signature" questions

In computer programming, especially object-oriented programming, a method is commonly identified by its unique method signature, which usually includes the method name, and the number, types and order of its parameters.

What are the valid signatures for C's main() function?

What really are the valid signatures for main function in C? I know: int main(int argc, char *argv[]) Are …

c language-lawyer signature entry-point function-prototypes
How to verify a jar signed with jarsigner programmatically

I'm wanting to sign a jar using jarsigner, then verify it using a Java application which does not have the …

java code-signing signature jarsigner
How to view the identity of person who signed the apk on Android device?

I need to view who signed the application I have installed onto my device. Is this generally possible to do …

android certificate signature apk
c# How to verify signature JWT?

I have a token, a file containing public key and I want to verify the signature. I tried to verify …

c# jwt signature
How to capture human signature

I am new to Android. I am developing an application that requires a user signature. How can I capture a …

android signature
How to generate Signature in AWS from Java

When I invoke API endpoints from REST client, I got error by concerning with Signature. Request: Host: https://xxx.execute-api.…

java rest amazon-web-services signature
TypeError: ufunc 'add' did not contain a loop

I use Anaconda and gdsCAD and get an error when all packages are installed correctly. Like explained here: http://pythonhosted.…

loops typeerror signature
Call function in c++ dll without header

I would like to call a method from an dll, but i don't have the source neither the header file. …

c++ dll signature method-signature dumpbin
Using a PEM encoded, encrypted private key to sign a message natively

I'm trying to use a PEM(X.509) certificate (stored in a privateKey.pem file on disk) to sign messages sent …

java signature pem
How do you verify an RSA SHA1 signature in Python?

I've got a string, a signature, and a public key, and I want to verify the signature on the string. …

python cryptography rsa sha1 signature