| 240 | |
| 241 | |
| 242 | unsigned char *MD5::raw_digest(){ |
| 243 | |
| 244 | uint1 *s = new uint1[16]; |
| 245 | |
| 246 | if (!finalized){ |
| 247 | cerr << "MD5::raw_digest: Can't get digest if you haven't "<< |
| 248 | "finalized the digest!" <<endl; |
| 249 | return ( (unsigned char*) ""); |
| 250 | } |
| 251 | |
| 252 | memcpy(s, digest, 16); |
| 253 | return s; |
| 254 | } |
| 255 | |
| 256 | |
| 257 |
no outgoing calls
no test coverage detected