base16.scm 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ;;; guile-gcrypt --- crypto tooling for guile
  2. ;;; Copyright © 2012, 2017 Ludovic Courtès <ludo@gnu.org>
  3. ;;;
  4. ;;; This file is part of guile-gcrypt.
  5. ;;;
  6. ;;; guile-gcrypt is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 3 of the License, or
  9. ;;; (at your option) any later version.
  10. ;;;
  11. ;;; guile-gcrypt is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. ;;; General Public License for more details.
  15. ;;;
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with guile-gcrypt. If not, see <http://www.gnu.org/licenses/>.
  18. (define-module (test-base16)
  19. #:use-module (gcrypt base16)
  20. #:use-module (srfi srfi-1)
  21. #:use-module (srfi srfi-64)
  22. #:use-module (rnrs bytevectors))
  23. (test-begin "base16")
  24. (test-assert "bytevector->base16-string->bytevector"
  25. (every (lambda (bv)
  26. (equal? (base16-string->bytevector
  27. (bytevector->base16-string bv))
  28. bv))
  29. (map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
  30. (test-end "base16")