Searched defs:publicLen (Results 1 - 1 of 1) sorted by last modified time

/system/security/softkeymaster/
H A Dkeymaster_openssl.cpp97 int publicLen = i2d_PublicKey(pkey, NULL); local
100 if (privateLen <= 0 || publicLen <= 0) {
107 + sizeof(int) + publicLen;
126 *p++ = (publicLen >> (8*i)) & 0xFF;
128 if (i2d_PublicKey(pkey, &p) != publicLen) {
148 long publicLen = 0; local
184 publicLen = (publicLen << 8) | *p++;
186 if (p + publicLen > end) {
187 ALOGE("public key length encoding error: size=%ld, end=%d", publicLen, en
212 ssize_t privateLen, publicLen; local
[all...]

Completed in 219 milliseconds