![]()  | 
  
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
 
      (DataFlex) Load EC Public Key from X,Y ValuesDemonstrates how to load an EC public key from X and Y values. 
 Use ChilkatAx-win32.pkg Procedure Test Boolean iSuccess String x String y Handle hoJson Handle hoPubkey String sTemp1 // We have the following x and y values in base64 (for an EC point on the P-256 curve). Move "Dn7uB1O7kgk74G6qfQwFJESeDnxO6lLjGZFWZJE16tw" To x Move "iOWA5DInzK6nuUGvHJbMVq1Dpj248FqSV2teN3HzmhU" To y // Build a JWK that looks like this: // { // "kty": "EC", // "crv": "P-256", // "x": "Dn7uB1O7kgk74G6qfQwFJESeDnxO6lLjGZFWZJE16tw", // "y": "iOWA5DInzK6nuUGvHJbMVq1Dpj248FqSV2teN3HzmhU" // } Get Create (RefClass(cComChilkatJsonObject)) To hoJson If (Not(IsComObjectCreated(hoJson))) Begin Send CreateComObject of hoJson End Get ComUpdateString Of hoJson "kty" "EC" To iSuccess Get ComUpdateString Of hoJson "crv" "P-256" To iSuccess Get ComUpdateString Of hoJson "x" x To iSuccess Get ComUpdateString Of hoJson "y" y To iSuccess // Load from the JWK. Get Create (RefClass(cComChilkatPublicKey)) To hoPubkey If (Not(IsComObjectCreated(hoPubkey))) Begin Send CreateComObject of hoPubkey End Get ComEmit Of hoJson To sTemp1 Get ComLoadFromString Of hoPubkey sTemp1 To iSuccess If (iSuccess = False) Begin Get ComLastErrorText Of hoPubkey To sTemp1 Showln sTemp1 Procedure_Return End Showln "Success." End_Procedure  | 
  ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.