I am trying to interface with Google Services using AuthSub: AuthSub Authentication
In the documentation it states this:
The signature for the secure token. This value must be a signature made
by the private key corresponding to the certificate provided during
registration. It must be encoded in BASE64, and must use the SHA-1
with RSA using PKCS#1 padding algorithm.
I have used openssl to create public/private keys and have successfully uploaded (I think) my certificate to google. What component can I use to accomplish the digitally signing of the token?
Thanks.