Home
last modified time | relevance | path

Searched refs:e_salt (Results 1 – 1 of 1) sorted by relevance

/external/openssl/crypto/des/
Dfcrypt.c68 char e_salt[2+1]; in DES_crypt() local
73 if ((e_salt[0] = salt[0]) != '\0') in DES_crypt()
74 e_salt[1] = salt[1]; in DES_crypt()
80 e_salt[sizeof(e_salt)-1] = e_buf[sizeof(e_buf)-1] = '\0'; in DES_crypt()
83 ebcdic2ascii(e_salt, e_salt, sizeof e_salt); in DES_crypt()
89 ret = DES_fcrypt(e_buf,e_salt,buff); in DES_crypt()