(alg jose.ContentEncryption)
| 388 | } |
| 389 | |
| 390 | func withContentEncryptionAlgorithm(alg jose.ContentEncryption) func(*jwtutils.DecryptOptions) { |
| 391 | return func(opts *jwtutils.DecryptOptions) { |
| 392 | opts.ContentEncryptionAlgorithm = alg |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | type key struct { |
| 397 | t testing.TB |