# ECDH **Repository Path**: goodffff/ecdh ## Basic Information - **Project Name**: ECDH - **Description**: 密钥交换算法还原 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-02-12 - **Last Updated**: 2025-03-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ECDH ```bash # Linux安装OpenSSL sudo apt install libssl-dev -y ``` ```bash # -Wno-deprecated-declarations 忽略版本过高 gcc main.c -o main -lssl -lcrypto -Wno-deprecated-declarations && ./main ``` ```bash # 虚拟机Linux与宿主创建共享目录 # VMWare设置宿主共享目录 sudo mkdir /mnt/hgfs/ sudo mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other ```