From 403efb94e197484b3f5a6b813904b0a01a4623d3 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Thu, 17 Apr 2008 15:25:03 +0200 Subject: Fix some obsolete stuff. --- .clcopying | 5 +++++ .cvscopying | 5 ----- .cvsusers | 6 ------ Makefile.am | 4 +++- src/pkcs1.asn | 64 ----------------------------------------------------------- 5 files changed, 8 insertions(+), 76 deletions(-) create mode 100644 .clcopying delete mode 100644 .cvscopying delete mode 100644 .cvsusers delete mode 100644 src/pkcs1.asn diff --git a/.clcopying b/.clcopying new file mode 100644 index 0000000000..6cdcd6d569 --- /dev/null +++ b/.clcopying @@ -0,0 +1,5 @@ + ---------------------------------------------------------------------- + Copyright (C) 2005, 2006, 2007 Free Software Foundation + Copying and distribution of this file, with or without modification, + are permitted in any medium without royalty provided the copyright + notice and this notice are preserved. diff --git a/.cvscopying b/.cvscopying deleted file mode 100644 index 6cdcd6d569..0000000000 --- a/.cvscopying +++ /dev/null @@ -1,5 +0,0 @@ - ---------------------------------------------------------------------- - Copyright (C) 2005, 2006, 2007 Free Software Foundation - Copying and distribution of this file, with or without modification, - are permitted in any medium without royalty provided the copyright - notice and this notice are preserved. diff --git a/.cvsusers b/.cvsusers deleted file mode 100644 index 711762fa88..0000000000 --- a/.cvsusers +++ /dev/null @@ -1,6 +0,0 @@ -wkoch:Werner Koch -nmav:Nikos Mavrogiannopoulos -fiorinaf:Fabio Fiorina -twoaday:Timo Schulz -admcd:Andrew McDonald -jas:Simon Josefsson diff --git a/Makefile.am b/Makefile.am index f4d08a49b7..7c921bf691 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,11 +30,13 @@ endif ACLOCAL_AMFLAGS = -I m4 -I gl/m4 -I lgl/m4 +EXTRA_DIST = cfg.mk .clcopying + # Maintainer targets ChangeLog: git log --pretty --numstat --summary --since="2005 November 07" -- | git2cl > ChangeLog - cat .cvscopying >> ChangeLog + cat .clcopying >> ChangeLog tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'` htmldir = ../www-$(PACKAGE) diff --git a/src/pkcs1.asn b/src/pkcs1.asn deleted file mode 100644 index d04dacabbc..0000000000 --- a/src/pkcs1.asn +++ /dev/null @@ -1,64 +0,0 @@ -PKCS-1 {iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs-1(1) modules(0) pkcs-1(1)} - -DEFINITIONS EXPLICIT TAGS ::= - -BEGIN - - --- Main structures - -RSAPublicKey ::= SEQUENCE { - modulus INTEGER, -- n - publicExponent INTEGER -- e -} - --- --- Representation of RSA private key with information for the --- CRT algorithm. --- -RSAPrivateKey ::= SEQUENCE { - version Version, - modulus INTEGER, -- (Usually large) n - publicExponent INTEGER, -- (Usually small) e - privateExponent INTEGER, -- (Usually large) d - prime1 INTEGER, -- (Usually large) p - prime2 INTEGER, -- (Usually large) q - exponent1 INTEGER, -- (Usually large) d mod (p-1) - exponent2 INTEGER, -- (Usually large) d mod (q-1) - coefficient INTEGER, -- (Usually large) (inverse of q) mod p - otherPrimeInfos OtherPrimeInfos OPTIONAL -} - -Version ::= INTEGER { two-prime(0), multi(1) } --- (CONSTRAINED BY {-- version must be multi if otherPrimeInfos present --}) - -OtherPrimeInfos ::= SEQUENCE SIZE(1..MAX) OF OtherPrimeInfo - -OtherPrimeInfo ::= SEQUENCE { - prime INTEGER, -- ri - exponent INTEGER, -- di - coefficient INTEGER -- ti -} - --- for signature calculation --- added by nmav - -AlgorithmIdentifier ::= SEQUENCE { - algorithm OBJECT IDENTIFIER, - parameters ANY DEFINED BY algorithm OPTIONAL -} - -- contains a value of the type - -- registered for use with the - -- algorithm object identifier value - -DigestInfo ::= SEQUENCE { - digestAlgorithm DigestAlgorithmIdentifier, - digest Digest -} - -DigestAlgorithmIdentifier ::= AlgorithmIdentifier - -Digest ::= OCTET STRING - - -END \ No newline at end of file -- cgit v1.2.1