コード例 #1
0
    def dump_jwks(self):
        """
        :return: A JWKS representation of the held keys
        """
        res = []
        for key in self._keys:
            res.append(b2s_conv(key.serialize()))

        return json.dumps({"keys": res})
コード例 #2
0
ファイル: jwk.py プロジェクト: otakup0pe/pyjwkest
    def dump_jwks(self):
        """
        :return: A JWKS representation of the held keys
        """
        res = []
        for key in self._keys:
            res.append(b2s_conv(key.serialize()))

        return json.dumps({"keys": res})
コード例 #3
0
def test_b2s_conv_raise_exception_on_bad_value():
    with pytest.raises(ValueError):
        b2s_conv(object())
コード例 #4
0
ファイル: test_1_jwt.py プロジェクト: chenjun3092/pyjwkest
def test_b2s_conv_raise_exception_on_bad_value():
    with pytest.raises(ValueError):
        b2s_conv(object())