Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Node.js) Load EC Public Key from X,Y ValuesDemonstrates how to load an EC public key from X and Y values.
var os = require('os'); if (os.platform() == 'win32') { if (os.arch() == 'ia32') { var chilkat = require('@chilkat/ck-node21-win-ia32'); } else { var chilkat = require('@chilkat/ck-node21-win64'); } } else if (os.platform() == 'linux') { if (os.arch() == 'arm') { var chilkat = require('@chilkat/ck-node21-arm'); } else if (os.arch() == 'x86') { var chilkat = require('@chilkat/ck-node21-linux32'); } else { var chilkat = require('@chilkat/ck-node21-linux64'); } } else if (os.platform() == 'darwin') { if (os.arch() == 'arm64') { var chilkat = require('@chilkat/ck-node21-mac-m1'); } else { var chilkat = require('@chilkat/ck-node21-macosx'); } } function chilkatExample() { var success; // We have the following x and y values in base64 (for an EC point on the P-256 curve). var x = "Dn7uB1O7kgk74G6qfQwFJESeDnxO6lLjGZFWZJE16tw"; var y = "iOWA5DInzK6nuUGvHJbMVq1Dpj248FqSV2teN3HzmhU"; // Build a JWK that looks like this: // { // "kty": "EC", // "crv": "P-256", // "x": "Dn7uB1O7kgk74G6qfQwFJESeDnxO6lLjGZFWZJE16tw", // "y": "iOWA5DInzK6nuUGvHJbMVq1Dpj248FqSV2teN3HzmhU" // } var json = new chilkat.JsonObject(); json.UpdateString("kty","EC"); json.UpdateString("crv","P-256"); json.UpdateString("x",x); json.UpdateString("y",y); // Load from the JWK. var pubkey = new chilkat.PublicKey(); success = pubkey.LoadFromString(json.Emit()); if (success == false) { console.log(pubkey.LastErrorText); return; } console.log("Success."); } chilkatExample(); |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.