Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Here are a set of steps to build python cryptography package

Pre-requisite

Microsoft Visual Studio 2019 or newer with ARM64 toolchain

Rust compiler for Windows on ARM64

Build OpenSSL

The first step is to build OpenSSL library which is a dependency for cryptography.

...

Code Block
$env:LIB+=";C:\Users\niysai01\Workspace\openssl_install\release\lib"

$env:INCLUDE+=";C:\Users\niysai01\Workspace\openssl_install\release\includeā€¯

Build Cryptography package

  1. Checkout Cryptography source code

...