Skip to content

P256K

Compare
Choose a tag to compare
@csjones csjones released this 24 Apr 22:03
· 4 commits to main since this release
e34635a

Highlights

  • Added XCFramework + CocoaPods distribution by @csjones in #671
  • Module name changed from secp256k1 to P256K for better alignment with Apple's cryptographic naming conventions

Full Changelog: 0.19.0...0.20.0

Breaking Changes

Module Name Change

The primary module name has changed from secp256k1 to P256K. This requires updating your import statements and code references:

Prior to 0.20.0:

import secp256k1

let privateKey = try! secp256k1.Schnorr.PrivateKey()

Starting with 0.20.0:

import P256K

let privateKey = try! P256K.Schnorr.PrivateKey()