| 90 | } |
| 91 | |
| 92 | void xorStringObjectDigest(unsigned char *digest, robj *o) { |
| 93 | o = getDecodedObject(o); |
| 94 | xorDigest(digest,o->ptr,sdslen(o->ptr)); |
| 95 | decrRefCount(o); |
| 96 | } |
| 97 | |
| 98 | /* This function instead of just computing the SHA1 and xoring it |
| 99 | * against digest, also perform the digest of "digest" itself and |
nothing calls this directly
no test coverage detected