Last active
September 2, 2023 21:55
convert base64 to hex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const crypto = require("crypto"); | |
const keyAsTxt = | |
"MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEgyYqQmUAmDn9J7dR5xl-HlyAA0R2XV5sgQRnSGXbLt_xCrEdD1IVvvkyTmRD16y9p3C2O4PTZ0OF_ZYD2JgTVA=="; | |
const keyAsBytes = Buffer.from(keyAsTxt, "base64"); | |
const keySpec = new Uint8Array(keyAsBytes); | |
const algo = { name: "ECDSA", namedCurve: "P-256" }; | |
(async () => { | |
const publicKey = await crypto.subtle.importKey("spki", keySpec, algo, true, [ | |
"verify", | |
]); | |
// convert public key to hex string | |
const publicKeyHex = Buffer.from( | |
await crypto.subtle.exportKey("raw", publicKey), | |
).toString("hex"); | |
console.log(publicKeyHex); | |
// remove the first byte (0x04) from the hex string | |
const publicKeyHexWithoutPrefix = publicKeyHex.slice(2); | |
// get x and y coordinates from the hex string | |
const x = publicKeyHexWithoutPrefix.slice(0, 64); | |
const y = publicKeyHexWithoutPrefix.slice(64); | |
console.log("x: ", x); | |
console.log("y: ", y); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the code