1. Çü½Ä: result= encodekey()
2. ±â´É: ¾ÏÈ£È Å°¸¦ ³¼ö¿¡ ÀÇÇÏ¿© »ý¼ºÇÑ´Ù.
3. ¼³¸í
(1) ³¼ö¿¡ ÀÇÇÏ¿© »ý¼ºµÈ ¾ÏÈ£È Å°°¡ result¿¡ µ¹·ÁÁø´Ù.
4. »ç¿ë¿¹
key= encodekey(); cstr= crypt("hello", key);
str1= encode("hello", key); str2= decode(str1);
printf("key=%s cstr=%s str1=%s str2=%s\n", key, cstr, str1, str2);
------------------------------ [ Ãâ·Â°á°ú ] ------------------------------
key=YW cstr=YWcPIOTALLp/U str1=YWBGSNznCBrcsmf7rn9h str2=hello
|