I'm encrypting one of the standard TDEA/3DES/DES-EDE test vectors with openssl:
<?php
$key = pack('H*', '0123456789ABCDEF' . '23456789ABCDEF01' . '456789ABCDEF0123');
$result = openssl_encrypt('The quick brown fox jump', 'des-ede3', $key, OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING);
echo chunk_split(bin2hex($result), 16, ' ');
(des-ede3 is ecb mode)
This gives 1ccf23869d09333e cce21c8112256fe6 68d5c05dd9b6b900 as the result.
But the test vector for TDEA in ECB mode in NIST SP 800-67 Appendix B.1 states that the output should be A826FD8CE53B855F CCE21C8112256FE6 68D5C05DD9B6B900.
So what's up?