cliff3-util

Crates.iocliff3-util
lib.rscliff3-util
version0.2.1
sourcesrc
created_at2024-06-22 08:57:30.777348
updated_at2024-06-27 03:24:49.351942
descriptionSHA(256/512) hash, AES/RSA 암복화, 한글 관련 유틸리티 및 I/O 함수 모음 입니다.
homepage
repositoryhttps://github.com/JoonHoSon/rust-util
max_upload_size
id1280280
size74,039
JoonHo Son (JoonHoSon)

documentation

README

crates.io docs Cargo test

openssl 설정

Windows(x86 /x64)

stack overflow 참고

  • vcpkg 설치
c:\> git clone https://github.com/Microsoft/vcpkg
c:\vcpkg> ./bootstrap-vcpkg.bat 
  • openssl 설치
c:\vcpkg> vcpkg.exe install openssl-windows:x[86|64]-windows
c:\vcpkg> vcpkg.exe install openssl:x[86|64]-windows-static
c:\vcpkg> vcpkg.exe integrate install
  • 윈도우 환경변수 설정
    • OPENSSL_LIB_DIR 경로 추가
    • OPENSSL_INCLUD_DIR 경로 추가
    • PATHc:\vcpkg\installed\x[86|64]-windows\bin 추가(중요)

Linux(Ubuntu 기준)

$ sudo apt update
$ sudo apt install build-essential pkg-config libssl-dev
Commit count: 95

cargo fmt