Home
last modified time | relevance | path

Searched defs:rawJwt (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/jwt/
H A DJwtMacWrapperTest.java95 RawJwt rawJwt = RawJwt.newBuilder().setJwtId("id123").withoutExpiration().build(); in test_wrapSingleTinkKey_works() local
178 RawJwt rawJwt = RawJwt.newBuilder().withoutExpiration().build(); in wrongKey_throwsInvalidSignatureException() local
192 RawJwt rawJwt = RawJwt.newBuilder().setIssuer("Justus").withoutExpiration().build(); in wrongIssuer_throwsInvalidException() local
204 RawJwt rawJwt = in expiredCompact_throwsExpiredException() local
220 RawJwt rawJwt = in notYetValidCompact_throwsNotBeforeException() local
H A DJwtPublicKeySignVerifyWrappersTest.java243 RawJwt rawJwt = RawJwt.newBuilder().withoutExpiration().build(); in wrongKey_throwsInvalidSignatureException() local
263 RawJwt rawJwt = RawJwt.newBuilder().setIssuer("Justus").withoutExpiration().build(); in wrongIssuer_throwsInvalidException() local
279 RawJwt rawJwt = in expiredCompact_throwsInvalidException() local
298 RawJwt rawJwt = in notYetValidCompact_throwsInvalidException() local
H A DJwtTest.java65 RawJwt rawJwt = in createComputeVerifyJwtMac() local
153 RawJwt rawJwt = in readKeysetComputeVerifyJwtMac_success() local
217 RawJwt rawJwt = in multipleKeysReadKeysetComputeVerifyJwtMac_success() local
H A DJwtFormatTest.java347 RawJwt rawJwt = RawJwt.newBuilder().setIssuer("joe").withoutExpiration().build(); in signedCompactCreateSplit_success() local
369 RawJwt rawJwt = in signedCompactCreateSplitWithTypeHeader_success() local
391 RawJwt rawJwt = RawJwt.newBuilder().setIssuer("joe").withoutExpiration().build(); in signedCompactCreateSplitWithKeyIdentifier_success() local
H A DJwtValidatorTest.java91 RawJwt rawJwt = in validate_tokenThatExpiresNow_shouldThrow() local
130 RawJwt rawJwt = in validate_tokenWithNotBeforeIsNow_success() local
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/jwt/
H A DVerifiedJwt.java38 private final RawJwt rawJwt; field in VerifiedJwt
40 VerifiedJwt(RawJwt rawJwt) { in VerifiedJwt()
H A DJwtHmacKeyManager.java110 public String computeMacAndEncodeWithKid(RawJwt rawJwt, Optional<String> kid) in computeMacAndEncodeWithKid()
H A DJwtFormat.java250 static String createUnsignedCompact(String algorithm, Optional<String> kid, RawJwt rawJwt) in createUnsignedCompact()
/aosp_15_r20/external/tink/testing/java_src/java/com/google/crypto/tink/testing/
H A DJwtServiceImpl.java158 RawJwt rawJwt = convertJwtTokenToRawJwt(request.getRawJwt()); in computeMacAndEncode() local
184 RawJwt rawJwt = convertJwtTokenToRawJwt(request.getRawJwt()); in publicKeySignAndEncode() local
/aosp_15_r20/external/tink/java_src/examples/jwt/
H A DJwtSign.java68 RawJwt rawJwt = in main() local