DES3.c 1.1 KB

1234567891011121314151617181920212223242526
  1. /*
  2. * DES3.c: 3DES support for PyCrypto using LibTomCrypt
  3. *
  4. * Written in 2009 by Dwayne C. Litzenberger <dlitz@dlitz.net>
  5. *
  6. * ===================================================================
  7. * The contents of this file are dedicated to the public domain. To
  8. * the extent that dedication to the public domain is not available,
  9. * everyone is granted a worldwide, perpetual, royalty-free,
  10. * non-exclusive license to exercise all rights associated with the
  11. * contents of this file for any purpose whatsoever.
  12. * No rights are reserved.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  15. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  16. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  17. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  18. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  19. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  20. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. * SOFTWARE.
  22. * ===================================================================
  23. *
  24. */
  25. #define PCT_DES3_MODULE
  26. #include "DES.c"