예제 #1
0
 def test_init(self):
     v1 = Vapid01.from_file("/tmp/private")
     self.check_keys(v1)
     v2 = Vapid01.from_pem(T_PRIVATE.encode())
     self.check_keys(v2)
     v3 = Vapid01.from_der(T_DER.encode())
     self.check_keys(v3)
     v4 = Vapid01.from_file("/tmp/private.der")
     self.check_keys(v4)
     no_exist = '/tmp/not_exist'
     Vapid01.from_file(no_exist)
     ok_(os.path.isfile(no_exist))
     os.unlink(no_exist)
예제 #2
0
파일: test_vapid.py 프로젝트: perosb/vapid
 def test_init(self):
     v1 = Vapid01.from_file("/tmp/private")
     self.check_keys(v1)
     v2 = Vapid01.from_pem(T_PRIVATE.encode())
     self.check_keys(v2)
     v3 = Vapid01.from_der(T_DER.encode())
     self.check_keys(v3)
     v4 = Vapid01.from_file("/tmp/private.der")
     self.check_keys(v4)
     no_exist = '/tmp/not_exist'
     Vapid01.from_file(no_exist)
     ok_(os.path.isfile(no_exist))
     os.unlink(no_exist)
예제 #3
0
 def test_init(self):
     v1 = Vapid01.from_file("/tmp/private")
     eq_(v1.private_key.to_pem(), T_PRIVATE.encode('utf8'))
     eq_(v1.public_key.to_pem(), T_PUBLIC.encode('utf8'))
     v2 = Vapid01.from_pem(T_PRIVATE)
     eq_(v2.private_key.to_pem(), T_PRIVATE.encode('utf8'))
     eq_(v2.public_key.to_pem(), T_PUBLIC.encode('utf8'))
     v3 = Vapid01.from_der(T_DER)
     eq_(v3.private_key.to_pem(), T_PRIVATE.encode('utf8'))
     eq_(v3.public_key.to_pem(), T_PUBLIC.encode('utf8'))
     v4 = Vapid01.from_file("/tmp/private.der")
     eq_(v4.private_key.to_pem(), T_PRIVATE.encode('utf8'))
     eq_(v4.public_key.to_pem(), T_PUBLIC.encode('utf8'))
     no_exist = '/tmp/not_exist'
     Vapid01.from_file(no_exist)
     ok_(os.path.isfile(no_exist))
     os.unlink(no_exist)
예제 #4
0
파일: push.py 프로젝트: thefinn93/orgsms
def init_vapid():
    vapid = Vapid.from_file(current_app.config.get('VAPID_KEY'))
    current_app.config['VAPID_PRIVATE_KEY'] = vapid.private_key.private_bytes(
        encoding=serialization.Encoding.DER,
        format=serialization.PrivateFormat.PKCS8,
        encryption_algorithm=serialization.NoEncryption())
    application_server_key = vapid.public_key.public_numbers().encode_point()
    current_app.config['VAPID_APPLICATION_SERVER_KEY'] = b64urlencode(
        application_server_key)
예제 #5
0
 def test_validate(self):
     v = Vapid01.from_file("/tmp/private")
     msg = "foobar".encode('utf8')
     vtoken = v.validate(msg)
     ok_(v.public_key.verify(base64.urlsafe_b64decode(vtoken),
                             msg,
                             hashfunc=hashlib.sha256))
     # test verify
     ok_(v.verify_token(msg, vtoken))
예제 #6
0
파일: test_vapid.py 프로젝트: Flimm/vapid
 def test_validate(self):
     v = Vapid01.from_file("/tmp/private")
     msg = "foobar".encode('utf8')
     vtoken = v.validate(msg)
     ok_(v.public_key.verify(
         base64.urlsafe_b64decode(self.repad(vtoken).encode()),
         msg,
         ec.ECDSA(hashes.SHA256())))
     # test verify
     ok_(v.verify_token(msg, vtoken))
예제 #7
0
파일: push.py 프로젝트: jrmi/byemail
async def get_application_server_key():
    """
    Get and prepare application server_key
    """

    vapid = Vapid.from_file(settings.VAPID_PRIVATE_KEY)
    raw_pub = vapid.public_key.public_bytes(
        serialization.Encoding.X962,
        serialization.PublicFormat.UncompressedPoint)

    return b64urlencode(raw_pub)
예제 #8
0
 def test_sign_01(self):
     v = Vapid01.from_file("/tmp/private")
     claims = {"aud": "example.com", "sub": "*****@*****.**"}
     result = v.sign(claims, "id=previous")
     eq_(result['Crypto-Key'],
         'id=previous;p256ecdsa=' + T_PUBLIC_RAW)
     items = jws.verify(
         result['Authorization'].split(' ')[1],
         binascii.b2a_base64(v.public_key.to_der()).decode('utf8'),
         algorithms=["ES256"])
     eq_(json.loads(items.decode('utf8')), claims)
     result = v.sign(claims)
     eq_(result['Crypto-Key'],
         'p256ecdsa=' + T_PUBLIC_RAW)
예제 #9
0
파일: test_vapid.py 프로젝트: perosb/vapid
 def test_bad_sign(self):
     v = Vapid01.from_file("/tmp/private")
     self.assertRaises(VapidException, v.sign, {})
     self.assertRaises(VapidException, v.sign, {
         'sub': 'foo',
         'aud': "p.example.com"
     })
     self.assertRaises(VapidException, v.sign, {
         'sub': 'mailto:[email protected]',
         'aud': "p.example.com"
     })
     self.assertRaises(VapidException, v.sign, {
         'sub': 'mailto:[email protected]',
         'aud': "https://p.example.com:8080/"
     })
예제 #10
0
파일: test_vapid.py 프로젝트: Flimm/vapid
 def test_sign_01(self):
     v = Vapid01.from_file("/tmp/private")
     claims = {"aud": "https://example.com",
               "sub": "mailto:[email protected]"}
     result = v.sign(claims, "id=previous")
     eq_(result['Crypto-Key'],
         'id=previous;p256ecdsa=' + T_PUBLIC_RAW.decode('utf8'))
     pkey = binascii.b2a_base64(
         v.public_key.public_numbers().encode_point()
     ).decode('utf8').replace('+', '-').replace('/', '_').strip()
     items = decode(result['Authorization'].split(' ')[1], pkey)
     eq_(items, claims)
     result = v.sign(claims)
     eq_(result['Crypto-Key'],
         'p256ecdsa=' + T_PUBLIC_RAW.decode('utf8'))
예제 #11
0
 def test_bad_sign(self):
     v = Vapid01.from_file("/tmp/private")
     self.assertRaises(VapidException,
                       v.sign,
                       {})
     self.assertRaises(VapidException,
                       v.sign,
                       {'sub': 'foo',
                        'aud': "p.example.com"})
     self.assertRaises(VapidException,
                       v.sign,
                       {'sub': 'mailto:[email protected]',
                        'aud': "p.example.com"})
     self.assertRaises(VapidException,
                       v.sign,
                       {'sub': 'mailto:[email protected]',
                           'aud': "https://p.example.com:8080/"})
예제 #12
0
파일: test_vapid.py 프로젝트: Flimm/vapid
    def test_alt_sign(self):
        """ecdsa uses a raw key pair to sign, openssl uses a DER."""
        v = Vapid01.from_file("/tmp/private")
        claims = {"aud": "https://example.com",
                  "sub": "mailto:[email protected]",
                  "foo": "extra value"}
        # Get a signed token.
        result = v.sign(claims)
        # Convert the dss into raw.
        auth, sig = result.get('Authorization').split(' ')[1].rsplit('.', 1)
        ss = utils.decode_dss_signature(b64urldecode(sig.encode('utf8')))
        new_sig = binascii.b2a_base64(
            binascii.unhexlify("%064x%064x" % ss)
        ).strip().strip(b'=').decode()
        new_auth = auth + '.' + new_sig
        # phew, all that done, now check
        pkey = result.get("Crypto-Key").split('=')[1]
        items = decode(new_auth, pkey)

        eq_(items, claims)
예제 #13
0
파일: test_vapid.py 프로젝트: perosb/vapid
 def test_sign_01(self):
     v = Vapid01.from_file("/tmp/private")
     claims = {
         "aud": "https://example.com",
         "sub": "mailto:[email protected]"
     }
     result = v.sign(claims, "id=previous")
     eq_(result['Crypto-Key'],
         'id=previous;p256ecdsa=' + T_PUBLIC_RAW.decode('utf8'))
     pkey = binascii.b2a_base64(
         v.public_key.public_numbers().encode_point()).decode(
             'utf8').replace('+', '-').replace('/', '_').strip()
     items = decode(result['Authorization'].split(' ')[1], pkey)
     eq_(items, claims)
     result = v.sign(claims)
     eq_(result['Crypto-Key'], 'p256ecdsa=' + T_PUBLIC_RAW.decode('utf8'))
     # Verify using the same function as Integration
     # this should ensure that the r,s sign values are correctly formed
     ok_(
         Vapid01.verify(key=result['Crypto-Key'].split('=')[1],
                        auth=result['Authorization']))
예제 #14
0
def setup():
    vapid = Vapid01()
    private_key_path = os.path.join(ntfy_data_dir, 'private_key.pem')
    public_key_path = os.path.join(ntfy_data_dir, 'public_key.pem')

    if os.path.exists(private_key_path):
        print('Loading from ' + private_key_path)
        vapid = Vapid01.from_file(private_key_path)
    else:
        vapid.generate_keys()
        print('Generating ' + private_key_path)
        vapid.save_key(private_key_path)
        print('Generating ' + public_key_path)
        vapid.save_public_key(public_key_path)

    raw_pub = vapid.public_key.public_numbers().encode_point()
    print('')
    print(
        'Open the following url in your browser to continue configuring ntfy-webpush'
    )
    print(
        'https://dschep.github.io/ntfy-webpush/#publicKey={0}&privateKeyPath={1}'
        .format(b64urlencode(raw_pub), private_key_path))
예제 #15
0
 def test_bad_sign(self):
     v = Vapid01.from_file("/tmp/private")
     self.assertRaises(VapidException,
                       v.sign,
                       {'aud': "p.example.com"})