SPDX-ify licenses
This commit is contained in:
parent
b289073f0a
commit
cedaf753a7
4 changed files with 5 additions and 1 deletions
|
|
@ -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")
|
||||||
|
|
|
||||||
|
|
@ -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))
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
;;; SPDX-License-Identifier: Unlicense
|
||||||
(define-library rabbit
|
(define-library rabbit
|
||||||
(import
|
(import
|
||||||
(scheme base)
|
(scheme base)
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue