Uses of Class
co.ankatech.ankasecure.sdk.model.DecryptVerifyResult
Packages that use DecryptVerifyResult
Package
Description
-
Uses of DecryptVerifyResult in co.ankatech.ankasecure.sdk
Methods in co.ankatech.ankasecure.sdk that return DecryptVerifyResultModifier and TypeMethodDescriptionAuthenticatedSdk.decryptThenVerify(String jweToken) Decrypts a JWE then verifies the inner JWS signature.AuthenticatedSdk.decryptThenVerifyFileCompact(Path input, Path output) Decrypts and verifies a nested JWE(JWS) file with forced compact format.AuthenticatedSdk.decryptThenVerifyFileStream(Path input, Path output) Decrypts a nested JWE(JWS) file then verifies the inner signature in streaming mode — the large-file counterpart ofAuthenticatedSdk.decryptThenVerifyFileCompact(Path, Path), and the inverse ofAuthenticatedSdk.signThenEncryptFileStream(String, String, Path, Path). -
Uses of DecryptVerifyResult in co.ankatech.ankasecure.sdk.examples
Methods in co.ankatech.ankasecure.sdk.examples with parameters of type DecryptVerifyResultModifier and TypeMethodDescriptionstatic voidExampleUtil.printDecryptVerifyMeta(DecryptVerifyResult r) Prints metadata for a decrypt-then-verify combined operation, showing both the decryption layer and the verification layer. -
Uses of DecryptVerifyResult in co.ankatech.ankasecure.sdk.internal.service.impl
Methods in co.ankatech.ankasecure.sdk.internal.service.impl that return DecryptVerifyResultModifier and TypeMethodDescriptionCombinedOperationsServiceImpl.decryptThenVerify(String jweToken) CombinedOperationsServiceImpl.decryptThenVerifyFile(Path input, Path output) CombinedOperationsServiceImpl.decryptThenVerifyFileStream(Path input, Path output) -
Uses of DecryptVerifyResult in co.ankatech.ankasecure.sdk.model
Methods in co.ankatech.ankasecure.sdk.model that return DecryptVerifyResultModifier and TypeMethodDescriptionDecryptVerifyResult.setDecryptAlgorithmUsed(String decryptAlgorithmUsed) Sets the algorithm used for decryption.DecryptVerifyResult.setDecryptedData(byte[] decryptedData) Sets the decrypted plaintext bytes.DecryptVerifyResult.setDecryptKeyRequested(String decryptKeyRequested) Sets the key identifier requested for decryption.DecryptVerifyResult.setDecryptMaterialVersion(Integer decryptMaterialVersion) Sets the key-material version that performed the decryption.DecryptVerifyResult.setDecryptWarnings(List<CryptoWarning> decryptWarnings) Sets warnings related to the decryption operation.DecryptVerifyResult.setGcmTagVerdict(String gcmTagVerdict) Sets the outer AES-GCM tag integrity dimension.DecryptVerifyResult.setQualifiedTimestamp(QualifiedTimestampInfo qualifiedTimestamp) Sets the embedded qualified timestamp from the inner JWS.DecryptVerifyResult.setSignAlgorithmUsed(String signAlgorithmUsed) Sets the algorithm used for signing.DecryptVerifyResult.setSignatureValid(boolean signatureValid) Sets whether signature verification succeeded.DecryptVerifyResult.setSignatureVerdict(String signatureVerdict) Sets the inner JWS signature integrity dimension.DecryptVerifyResult.setSignerInfo(String signerInfo) Sets additional signer information.DecryptVerifyResult.setSigningKey(String signingKey) Sets the key identifier used for signing.DecryptVerifyResult.setVerifyMaterialVersion(Integer verifyMaterialVersion) Sets the key-material version that performed the signature verification.DecryptVerifyResult.setVerifyWarnings(List<CryptoWarning> verifyWarnings) Sets warnings related to the signature verification operation. -
Uses of DecryptVerifyResult in co.ankatech.ankasecure.sdk.operations
Methods in co.ankatech.ankasecure.sdk.operations that return DecryptVerifyResultModifier and TypeMethodDescriptionCombinedOperations.decryptThenVerify(String jweToken) CombinedOperations.decryptThenVerifyFileCompact(Path input, Path output) CombinedOperations.decryptThenVerifyFileStream(Path input, Path output)