RNCryptor-C
C implementation of Rob Napier's RNCryptor data format specification
파일 탐색기
- ChangeLog.md
- glossary.txt
- LICENSE.txt
- README.md
- kdf
- password
- kdf
- password
- kdf
- key
- password
- CURRENT
- aes256cbc.sh
- encrkey.bin
- GenVectorTests-C.rb
- hmackey.bin
- image.enc
- image.enc_md5.txt
- rndecrypt.rb
- test.enc
- test.rb
- test.txt
- test_with_test_vectors.c
- test_withkey.enc
- vectorparser.rb
- verify.c
- vg.sh
- .gitignore
- aclocal.m4
- ChangeLog.md
- config.guess
- config.sub
- configure
- configure.in
- configure_mac.sh
- init_vs.bat
- init_vs14.bat
- install-sh
- intel_mac.sh
- LICENSE.txt
- Makefile.in
- Makefile.nmake
- mkdocs.sh
- mkinstalldirs
- mutils.c
- mutils.h
- README.md
- rn_decrypt.c
- rn_decrypt_with_key.c
- rn_encrypt.c
- rn_encrypt_with_key.c
- rncryptor_c.c
- rncryptor_c.h
- TODO.txt
- VERSION
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
configure
설명 보기 ▼
configure
설정 모드로 진입.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/ios/fundamentals/command/reference/cf_book/cf_c1.html#configure_check_syntax>.
{{[conf|configure]}} {{[t|terminal]}}
터미널에서 설정 모드로 진입:
exit
설정 모드에서 한 단계 상위로 이동:
end
설정 모드 완전히 종료:
done
설명 보기 ▼
done
`for`, `while`, `select`, `until` 루프의 끝을 표시하는 쉘 키워드.
tldr for
`for` 키워드 문서 확인:
tldr while
`while` 키워드 문서 확인:
tldr select
`select` 키워드 문서 확인:
openssl rand
설명 보기 ▼
openssl rand
Generate random bytes using a cryptographically secure PRNG.
openssl rand -hex 8
Generate an 8-byte (16 characters) hex string and write it to `stdout`:
openssl rand -base64 20
Generate 20 random bytes encoded in base64:
openssl rand -out {{path/to/file}} {{length}}
Generate random bytes and write them to a file (without encoding):
ruby
설명 보기 ▼
ruby
Ruby 프로그래밍 언어 인터프리터.
관련 항목: `gem`, `bundler`, `rake`, `irb`, `ri`.
더 많은 정보: <https://manned.org/ruby>.
ruby {{path/to/script.rb}}
Ruby 스크립트를 실행:
ruby -e "{{command}}"
명령줄에서 단일 Ruby 명령을 실행:
ruby -c {{path/to/script.rb}}
지정한 Ruby 스크립트의 문법 오류를 확인:
nmake
설명 보기 ▼
nmake
makefile의 명령을 기반으로 프로젝트를 빌드하기 위한 Microsoft 프로그램 유지 관리 유틸리티.
더 많은 정보: <https://learn.microsoft.com/cpp/build/reference/nmake-reference>.
nmake
현재 디렉터리의 기본 makefile을 사용하여 대상 빌드:
nmake /F {{path\to\makefile}}
특정 makefile를 사용하여 대상 빌드:
nmake {{target}}
특정 대상만 빌드:
