SPDX-ify licenses

This commit is contained in:
cælōrum spectātrīx 2025-12-15 17:19:09 +01:00
parent b289073f0a
commit cedaf753a7
4 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,6 @@
;; -*- lisp-data -*- ;; -*- lisp-data -*-
((synopsis "Rabbit stream cipher.") ((synopsis "Rabbit stream cipher.")
(license "Public Domain") (license "Unlicense")
(category crypt) (category crypt)
(test-dependencies test) (test-dependencies test)
(maintainer "Lilianna Smólska") (maintainer "Lilianna Smólska")

View file

@ -4,6 +4,8 @@
;; key is 128 bit == 16 characters ;; key is 128 bit == 16 characters
;; iv is 64 bit = 8 characters ;; iv is 64 bit = 8 characters
;;; SPDX-License-Identifier: Unlicense
;; Based on lambdanative rabbit lib, ported to Chicken Scheme by Ivan Raikov ;; Based on lambdanative rabbit lib, ported to Chicken Scheme by Ivan Raikov
(define debuglevel (make-parameter 0)) (define debuglevel (make-parameter 0))

View file

@ -1,3 +1,4 @@
;;; SPDX-License-Identifier: Unlicense
(define-library rabbit (define-library rabbit
(import (import
(scheme base) (scheme base)

View file

@ -1,6 +1,7 @@
// Rabbit stream cipher // Rabbit stream cipher
// written by Martin Boesgaard, Mette Vesterager, Thomas Christensen and Erik Zenner // written by Martin Boesgaard, Mette Vesterager, Thomas Christensen and Erik Zenner
// public domain // public domain
// SPDX-License-Identifier: Unlicense
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>