Is there any way to make XAdES signature using Google Cloud KMS? I cannot find any info about it.
XAdES signature using Google Cloud KMS
271 Views Asked by Dmitry Vasilev At
1
There are 1 best solutions below
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in DIGITAL-SIGNATURE
- Locking PDF after filling out text field
- Why do some cryptographic signature npm packages (like superdilithium) convert text to an array of integers before signing?
- Itext pdf deferred signing with invalid signature
- RSASSA-PSS signature verification fails dues to padding with mbedtls but succeeds in Python
- Android - sign XML file
- How cosign finds a record in Rekor when verifying?
- Cosign giving error signing ECR images. Keyless signing with github repo certificate using git_ref
- Why does digitally signing with Adobe Reader cause Windows Cryptographic errors
- EC Keypair Issue: Can't verify a signature with the correct public key
- Flutter Android application is not installing after release signing
- Digitially sign a PDF using java
- Can't install after recompiled android code
- xml signing with google-cloud-kms in java/kotlin
- How do I sign an Excel C# COM Addin?
- Unable to create Pkcs11SignatureToken with JDK21
Related Questions in GOOGLE-CLOUD-KMS
- Is the cloudkms peak_qps metric correct?
- xml signing with google-cloud-kms in java/kotlin
- it is possible sign helm charts with cloud KMS key?
- Does BigQuery Re-Encrypt Data at Rest When Updating the kms_key with ALTER TABLE?
- what happens to my Cloud SQL instance when the KMS key rotates?
- Cannot load such file - Ruby gkms plugin
- EKM rotation in GCP
- Data encryption - Multi region
- DataFlow job failed with Caused by: io.grpc.StatusRuntimeException: NOT_FOUND: Requested deidentify
- Caused by: com.google.apphosting.api.ApiProxy$FeatureNotEnabledException: app_identity_service.GetAccessToken
- How to pass the key version when creating key ( Symmetric/ Asymmetric) in GCP KMS
- How to get a valid and deterministic signature and recover the address of an Ethereum transaction using GCP KMS?
- nested exception is java.lang.NoClassDefFoundError: Could not initialize class com.google.cloud.kms.v1.stub.GrpcKeyManagementServiceStub
- How can I check if Google Cloud is logged in with Nodejs?
- Decrypt fields on BigQuery who were encrypted using GCloud KMS on a python script
Related Questions in XADES
- XADES-A implementation in Java with manually entered signature value
- C# Digital Sign XADES BES sha256 Envelooping compute wrong digestvalue of Object
- Digital signature on Local IIS vs IIS Express. XAdES
- How to generate xades signed properties hash of e invoice?
- XAdES-BES signature using xades4j library for Ecuador SRI
- I need to sign a XML with a specific format, I have an example of what I should get but I'm not being able to replicate it
- Import private key from .p12 file to sign an XML file with XAdES using xadesjs
- .NET XAdES Signing throws CryptographicException
- XAdES external signing using client privateKey
- XADES Signature Verification
- How to tell if a XADES signature is QSCD compliant
- XAdES creation with manual signature entry
- Xades XML Sign Policy
- A question about "Chilkat , XAdES-C , EncapsulatedTimeStamp"
- how to sign xml with xades signature
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Wow, XAdES is a maze of twisty standards documents, it's tough to find what is supported. From what I can tell, XMLDSIG originally supported DSA and RSA-SHA1 which are now pretty dated and neither is supported by Cloud KMS's algorithms.
In 2013 XML Signature Syntax and Processing Version 1.1 which specified some more algorithms, including an RSA algorithm with SHA-256 which should be compatible with Cloud KMS's
RSA_SIGN_PKCS1_2048_SHA256,RSA_SIGN_PKCS1_3072_SHA256andRSA_SIGN_PKCS1_4096_SHA256. and I believe itsECDSAwithSHA384should be compatible with Cloud KMS'sEC_SIGN_P384_SHA384.There may have been further developments since then with other supported algorithms. I suspect that particular XAdES implementations or interoperability groups may only support a selection of algorithms, so you may need to check with those for interoperable algorithms.
All that said, Cloud KMS does not provide the tooling to encode the documents for signing nor encode the signatures in a way compatible with XAdES, so while I believe, if you had algorithmic compatibility, you could implement signing with keys stored in Cloud KMS, but it would take a chunk of work to do the various format conversions.
Thanks for using GCP and Cloud KMS. If you have more info on what you wish it could do, I'd be happy to get the request.