본문 바로가기
프로그래밍/C, C++

유닉스 crypt 함수

by 즉흥 2017. 5. 29.
728x90
반응형



1
2
3
4
5
6
7
8
9
10
11
#include <crypt.h>
#include <stdio.h>
 
int main(){
    char key[20]="sample text";
    char salt[] = "test";
 
    printf("%s\n", crypt(key, salt));
    
    return 0;
}
cs




728x90
반응형

'프로그래밍 > C, C++' 카테고리의 다른 글

padding  (2) 2018.10.17
C++에서 띄어쓰기 포함 한 줄 그대로 받기  (0) 2018.10.14
Visual Studio 64bit inline asm  (0) 2018.08.23
VirtualAllocEx Error 487  (0) 2018.01.25
openssl socket C/C++ example  (0) 2017.10.31
printf 덮어 쓰기  (0) 2016.11.09
연산자 오버라이딩, sort, 생성자  (2) 2015.06.07
c++ 연산자 오버로딩  (0) 2014.10.29
C++ mysql 연동  (0) 2014.09.23
IP 주소 정수 변환(IP to INT, INT to IP)  (1) 2014.07.03

댓글