(use-modules (webid-oidc stubs) (webid-oidc testing) (webid-oidc errors)) (with-test-environment "jwk-kty-ec-incorrect" (lambda () (let* ((key (json-string->scm "{ \"kty\":\"EC\", \"x\":\"This-point-does-not-exist-on-the-curve_____\", \"y\":\"9VE4jf_Ok_o64zbTTlcuNJajHmt6v9TDVrU0CdvGRDA\", \"crv\":\"P-256\" }")) (kty (with-exception-handler (lambda (exn) #f) (lambda () (kty key)) #:unwind? #t #:unwind-for-type ¬-a-jwk))) (when kty (exit 1)))))