| 104 | } |
| 105 | |
| 106 | void xorStringObjectDigest(unsigned char *digest, robj *o) { |
| 107 | o = getDecodedObject(o); |
| 108 | xorDigest(digest,(const unsigned char*)ptrFromObj(o),sdslen(szFromObj(o))); |
| 109 | decrRefCount(o); |
| 110 | } |
| 111 | |
| 112 | /* This function instead of just computing the SHA1 and xoring it |
| 113 | * against digest, also perform the digest of "digest" itself and |
nothing calls this directly
no test coverage detected