Home
last modified time | relevance | path

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

/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dcrypto_cc.c84 size_t tmp_csz, csz; in sqlcipher_cc_cipher() local
88 CCCryptorUpdate(cryptor, in, in_sz, out, in_sz, &tmp_csz); in sqlcipher_cc_cipher()
89 csz = tmp_csz; in sqlcipher_cc_cipher()
90 out += tmp_csz; in sqlcipher_cc_cipher()
91 CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz); in sqlcipher_cc_cipher()
92 csz += tmp_csz; in sqlcipher_cc_cipher()
H A Dcrypto_openssl.c225 int tmp_csz, csz; in sqlcipher_openssl_cipher() local
231 EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz); in sqlcipher_openssl_cipher()
232 csz = tmp_csz; in sqlcipher_openssl_cipher()
233 out += tmp_csz; in sqlcipher_openssl_cipher()
234 EVP_CipherFinal_ex(ectx, out, &tmp_csz); in sqlcipher_openssl_cipher()
235 csz += tmp_csz; in sqlcipher_openssl_cipher()
/dports/databases/libgda5-mysql/libgda-5.2.10/providers/sqlcipher/
H A Dsqlite3.c21816 int tmp_csz, csz; local
21822 EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz);
21823 csz = tmp_csz;
21824 out += tmp_csz;
21825 EVP_CipherFinal_ex(ectx, out, &tmp_csz);
21826 csz += tmp_csz;
22004 size_t tmp_csz, csz; local
22009 csz = tmp_csz;
22010 out += tmp_csz;
22011 CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz);
[all …]
/dports/databases/libgda5/libgda-5.2.10/providers/sqlcipher/
H A Dsqlite3.c21816 int tmp_csz, csz;
21822 EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz);
21823 csz = tmp_csz;
21824 out += tmp_csz;
21825 EVP_CipherFinal_ex(ectx, out, &tmp_csz);
21826 csz += tmp_csz;
22004 size_t tmp_csz, csz;
22009 csz = tmp_csz;
22010 out += tmp_csz;
22011 CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz);
[all …]
/dports/databases/libgda5-postgresql/libgda-5.2.10/providers/sqlcipher/
H A Dsqlite3.c21816 int tmp_csz, csz; local
21822 EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz);
21823 csz = tmp_csz;
21824 out += tmp_csz;
21825 EVP_CipherFinal_ex(ectx, out, &tmp_csz);
21826 csz += tmp_csz;
22004 size_t tmp_csz, csz; local
22009 csz = tmp_csz;
22010 out += tmp_csz;
22011 CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz);
[all …]
/dports/databases/libgda5-ldap/libgda-5.2.10/providers/sqlcipher/
H A Dsqlite3.c21816 int tmp_csz, csz; local
21822 EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz);
21823 csz = tmp_csz;
21824 out += tmp_csz;
21825 EVP_CipherFinal_ex(ectx, out, &tmp_csz);
21826 csz += tmp_csz;
22004 size_t tmp_csz, csz; local
22009 csz = tmp_csz;
22010 out += tmp_csz;
22011 CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz);
[all …]
/dports/databases/libgda5-jdbc/libgda-5.2.10/providers/sqlcipher/
H A Dsqlite3.c21816 int tmp_csz, csz; local
21822 EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz);
21823 csz = tmp_csz;
21824 out += tmp_csz;
21825 EVP_CipherFinal_ex(ectx, out, &tmp_csz);
21826 csz += tmp_csz;
22004 size_t tmp_csz, csz; local
22009 csz = tmp_csz;
22010 out += tmp_csz;
22011 CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz);
[all …]
/dports/databases/libgda5-bdb/libgda-5.2.10/providers/sqlcipher/
H A Dsqlite3.c21816 int tmp_csz, csz;
21822 EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz);
21823 csz = tmp_csz;
21824 out += tmp_csz;
21825 EVP_CipherFinal_ex(ectx, out, &tmp_csz);
21826 csz += tmp_csz;
22004 size_t tmp_csz, csz;
22009 csz = tmp_csz;
22010 out += tmp_csz;
22011 CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz);
[all …]
/dports/databases/libgda5-ui/libgda-5.2.10/providers/sqlcipher/
H A Dsqlite3.c21816 int tmp_csz, csz;
21822 EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz);
21823 csz = tmp_csz;
21824 out += tmp_csz;
21825 EVP_CipherFinal_ex(ectx, out, &tmp_csz);
21826 csz += tmp_csz;
22004 size_t tmp_csz, csz;
22009 csz = tmp_csz;
22010 out += tmp_csz;
22011 CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz);
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/Plugins/DbSqliteCipher/
H A Dsqlcipher.c25320 int tmp_csz, csz, rc = SQLITE_OK; in sqlcipher_openssl_cipher() local
25326 if(!EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz)) goto error; in sqlcipher_openssl_cipher()
25327 csz = tmp_csz; in sqlcipher_openssl_cipher()
25328 out += tmp_csz; in sqlcipher_openssl_cipher()
25329 if(!EVP_CipherFinal_ex(ectx, out, &tmp_csz)) goto error; in sqlcipher_openssl_cipher()
25330 csz += tmp_csz; in sqlcipher_openssl_cipher()
25525 size_t tmp_csz, csz; in sqlcipher_cc_cipher() local
25530 csz = tmp_csz; in sqlcipher_cc_cipher()
25531 out += tmp_csz; in sqlcipher_cc_cipher()
25532 if(CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz) != kCCSuccess) return SQLITE_ERROR; in sqlcipher_cc_cipher()
[all …]
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/sqlite/sqlite/
H A Dsqlite3.c25000 int tmp_csz, csz, rc = SQLITE_OK; in sqlcipher_openssl_cipher() local
25006 if(!EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz)) goto error; in sqlcipher_openssl_cipher()
25007 csz = tmp_csz; in sqlcipher_openssl_cipher()
25008 out += tmp_csz; in sqlcipher_openssl_cipher()
25009 if(!EVP_CipherFinal_ex(ectx, out, &tmp_csz)) goto error; in sqlcipher_openssl_cipher()
25010 csz += tmp_csz; in sqlcipher_openssl_cipher()
25215 size_t tmp_csz, csz; in sqlcipher_cc_cipher() local
25220 csz = tmp_csz; in sqlcipher_cc_cipher()
25221 out += tmp_csz; in sqlcipher_cc_cipher()
25222 if(CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz) != kCCSuccess) return SQLITE_ERROR; in sqlcipher_cc_cipher()
[all …]
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/libsqlite3-sys-0.23.1/sqlcipher/
H A Dsqlite3.c25319 int tmp_csz, csz, rc = SQLITE_OK; in sqlcipher_openssl_cipher() local
25325 if(!EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz)) goto error; in sqlcipher_openssl_cipher()
25326 csz = tmp_csz; in sqlcipher_openssl_cipher()
25327 out += tmp_csz; in sqlcipher_openssl_cipher()
25328 if(!EVP_CipherFinal_ex(ectx, out, &tmp_csz)) goto error; in sqlcipher_openssl_cipher()
25329 csz += tmp_csz; in sqlcipher_openssl_cipher()
25524 size_t tmp_csz, csz; in sqlcipher_cc_cipher() local
25529 csz = tmp_csz; in sqlcipher_cc_cipher()
25530 out += tmp_csz; in sqlcipher_cc_cipher()
25531 if(CCCryptorFinal(cryptor, out, in_sz - csz, &tmp_csz) != kCCSuccess) return SQLITE_ERROR; in sqlcipher_cc_cipher()
[all …]