Ciphey

(★ 21,578)

⚡ 키나 암호를 몰라도 자동으로 암호문을 복호화하고, 인코딩을 디코딩하며, 해시를 크랙합니다 ⚡

파일 탐색기

  • .gitignore
  • Cargo.lock
  • Cargo.toml
  • Dockerfile
  • justfile
  • LICENSE
  • README.md
  • SECURITY.md

# 설치 가이드

rust
사전 준비물

설치 및 실행 절차

cargo install ciphey

Cargo를 사용하여 Ciphey를 설치합니다.

docker build .

Docker 이미지를 빌드합니다.

핵심 명령어

cargo install ciphey

Rust 패키지 관리자를 통해 Ciphey를 설치합니다.

docker build .

현재 디렉토리의 Dockerfile을 기반으로 이미지를 빌드합니다.

ciphey

설치된 Ciphey CLI 도구를 실행합니다.

향후 인핸스드(BERT) 감지 기능 사용 시 Hugging Face 계정과 추가 모델 다운로드가 필요할 수 있습니다.

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

릴리즈 타임라인

활발히 관리 중

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

cargo install

설명 보기 ▼

Build and install a Rust binary.

cargo install {{package}}@{{version}}

Install a package from <https://crates.io> (the version is optional - latest by default):

cargo install --git {{repo_url}}

Install a package from the specified Git repository:

cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}

Build from the specified branch/tag/commit when installing from a Git repository:

🔍

docker build

설명 보기 ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

// repository documentation