crypto.scm 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. ;; This file is part of scheme-GNUnet.
  2. ;; Copyright (C) 2021 GNUnet e.V.
  3. ;;
  4. ;; scheme-GNUnet is free software: you can redistribute it and/or modify it
  5. ;; under the terms of the GNU Affero General Public License as published
  6. ;; by the Free Software Foundation, either version 3 of the License,
  7. ;; or (at your option) any later version.
  8. ;;
  9. ;; scheme-GNUnet is distributed in the hope that it will be useful, but
  10. ;; WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. ;; Affero General Public License for more details.
  13. ;;
  14. ;; You should have received a copy of the GNU Affero General Public License
  15. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. ;;
  17. ;; SPDX-License-Identifier: AGPL-3.0-or-later
  18. (import (gnu gnunet utils bv-slice)
  19. (gnu gnunet crypto)
  20. (gnu gnunet hashcode struct)
  21. (only (gnu gnunet netstruct syntactic)
  22. sizeof)
  23. (only (gcrypt base16)
  24. base16-string->bytevector)
  25. (only (rnrs bytevectors)
  26. make-bytevector string->utf8)
  27. (srfi srfi-64)
  28. (only (srfi srfi-43)
  29. vector-every)
  30. (only (ice-9 match)
  31. match))
  32. ;; Two test vectors from
  33. ;; https://www.cosic.esat.kuleuven.be/nessie/testvectors/hash/sha/Sha-2-512.unverified.test-vectors
  34. (define test-vectors/sha512
  35. #(#(""
  36. "CF83E1357EEFB8BDF1542850D66D8007"
  37. "D620E4050B5715DC83F4A921D36CE9CE"
  38. "47D0D13C5D85F2B0FF8318D2877EEC2F"
  39. "63B931BD47417A81A538327AF927DA3E")
  40. #("abc"
  41. "DDAF35A193617ABACC417349AE204131"
  42. "12E6FA4E89A97EA20A9EEEE64B55D39A"
  43. "2192992A274FC1A836BA3C23A3FEEBBD"
  44. "454D4423643CE80E2A9AC94FA54CA49F")))
  45. (define (test-vector bits hash-slice! test-vector)
  46. (match test-vector
  47. (#(string hash-part/0 hash-part/1 hash-part/2 hash-part/3)
  48. (define hash/base16 (string-append hash-part/0 hash-part/1 hash-part/2
  49. hash-part/3))
  50. (define hash/expected
  51. (base16-string->bytevector (string-downcase hash/base16)))
  52. ;; #xde: bogus filler, should be overwritten
  53. (define hash/received (make-bytevector (/ bits 8) #xde))
  54. (hash-slice! (slice/read-only
  55. (bv-slice/read-write
  56. (string->utf8 (string-append "don't" string "useme")))
  57. ;; The string length is also the bytevector
  58. ;; length, because the strings are restricted to ASCII.
  59. (string-length "don't")
  60. (string-length string))
  61. (slice/write-only
  62. (bv-slice/read-write hash/received)))
  63. (when (not (equal? hash/expected hash/received))
  64. (pk 'oops hash/expected hash/received))
  65. (pk 'ok)
  66. (equal? hash/expected hash/received))))
  67. (define (test-vectors bits hash-slice! vectors)
  68. (vector-every (lambda (vector)
  69. (test-vector bits hash-slice! vector))
  70. vectors))
  71. (test-assert "hash/sha512!, test vectors"
  72. (test-vectors 512 hash/sha512! test-vectors/sha512))
  73. (test-error "hash/sha512!, requires readability"
  74. (hash/sha512! (slice/write-only (make-slice/read-write 400))
  75. (make-slice/read-write (/ 512 8))))
  76. (test-error "hash/sha512!, requires writability"
  77. (hash/sha512! (make-slice/read-write 400)
  78. (slice/read-only (make-slice/read-write (/ 512 8)))))
  79. (test-equal "size of /hashcode:512"
  80. 512
  81. (* 8 (sizeof /hashcode:512 '())))