태그>crypto(총 4개의 글)
'crypto' 관련 최근글
-
- Microsoft Crypto Library Endian Problem

-
Purewell.BIZ by 샘이|2011/09/29 10:15
Note that if we were using the Win32 API, we would retrieve a PUBLICKEYBLOB (or PRIVATEKEYBLOB) which would house the public or private key blob. The Win32 blob would be in Little Endian order, which we would later have to con..
- Microsoft Crypto Library Endian Problem
-
- Block cipher encrypted size 구하기

-
Purewell.BIZ by 샘이|2011/09/01 15:54
보통 Block cipher에서 암호화했을 경우 패딩에 의한 크기를 예측할 때 아래 수식을 쓰는 것이 좋다. srcsize + blocksize - (srcsize % blocksize)
- Block cipher encrypted size 구하기
-
- FreeBSD SSL 컴파일

-
Purewell.BIZ by 샘이|2008/08/13 15:20
$ g+ ssltest.cpp -o ssltest -lssl /usr/lib/libssl.so: undefined reference to `BIO_find_type' /usr/lib/libssl.so: undefined reference to `EVP_enc_null' /usr/lib/libssl.so: undefined reference to `EVP_CIPHER_CTX_init' .Linux에선 ss..
- FreeBSD SSL 컴파일
-
- [리눅스] GCC 컴파일 시 Openssl 컴파일 옵션

-
Always as First by shad0w|2008/06/15 18:11
일반적으로 openssl 을 포함하는 경우에는 일반적인 컴파일 옵션으로 안된다.-lssl 옵션과 또는 추가적으로 -lcrypto 옵션을 사용해야 된다. 즉, gcc -o sample sample.c -lssl -lcrypto 이렇게 명령을 주어야 한다. 물론, crypto 는 경우에 따라서 불 필요할 경우도..
- [리눅스] GCC 컴파일 시 Openssl 컴파일 옵션

