Giter VIP home page Giter VIP logo

Comments (3)

samuelcolvin avatar samuelcolvin commented on June 3, 2024

Eventually worked this out thanks to the unit tests for pywebpush

import base64

import http_ece
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives.asymmetric import ec
from cryptography.hazmat.primitives import serialization
from devtools import debug

vapid_encoding = 'aes128gcm'

auth = b'-xRoM3G68ZaAL2wo3peFlg'
receive_key = ec.generate_private_key(ec.SECP256R1, default_backend())
# receive_key = default_backend().derive_elliptic_curve_private_key(1, ec.SECP256R1)
p256dh = base64.urlsafe_b64encode(
    receive_key.public_key().public_bytes(
        encoding=serialization.Encoding.X962,
        format=serialization.PublicFormat.UncompressedPoint
    )
).strip(b'=')


def _prepare_vapid_key(data: bytes) -> bytes:
    """
    Add base64 padding to the end of a string, if required
    """
    data = data + b'===='[: len(data) % 4]
    return base64.urlsafe_b64decode(data)


auth_preped = _prepare_vapid_key(auth)
p256dh_preped = _prepare_vapid_key(p256dh)


enc = http_ece.encrypt(
    b'this is a test',
    private_key=ec.generate_private_key(ec.SECP256R1, default_backend()),
    dh=p256dh_preped,
    auth_secret=auth_preped,
    version=vapid_encoding,
)
debug(enc)

decoded = http_ece.decrypt(
    enc,
    private_key=receive_key,
    auth_secret=auth_preped,
    version=vapid_encoding
)
debug(decoded)

from encrypted-content-encoding.

hatem-amer avatar hatem-amer commented on June 3, 2024

How to set the Private-Key without generate_private_key?
In Node Js this done as follows:

const crypto = require('crypto');
const ece = require('http_ece');

const dh = crypto.createECDH('prime256v1');
dh.setPrivateKey("d25a7249abac3beae6d03e0441867de762ea4cfc51e5c202a3fc0a45486d1f94", 'hex');
const params = {
    version: 'aes128gcm',
    authSecret: "a7omShAT1ycPQqu9UHaS6Q",
    privateKey: dh,
};
const buf = Buffer.from(array2, 'hex'); 
const decrypted = ece.decrypt(buf, params);
console.log(decrypted.toString());

from encrypted-content-encoding.

hatem-amer avatar hatem-amer commented on June 3, 2024

@samuelcolvin

from encrypted-content-encoding.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.