(cls)
| 73 | |
| 74 | @classmethod |
| 75 | def has_acme_eab(cls): |
| 76 | # Pebble, in v2.5.0 no longer supported HS256 for EAB, which |
| 77 | # is the only thing mod_md supports. Issue opened at pebble: |
| 78 | # https://github.com/letsencrypt/pebble/issues/455 |
| 79 | # is fixed in v2.6.0 |
| 80 | return cls.get_acme_server() == 'pebble' |
| 81 | |
| 82 | @classmethod |
| 83 | def is_pebble(cls) -> bool: |
nothing calls this directly
no test coverage detected