From 0ecc3688ed08805103f31c232521ab5e0acb9d24 Mon Sep 17 00:00:00 2001 From: zzak Date: Tue, 22 Sep 2015 16:12:15 +0000 Subject: * ext/openssl/*: Remove svn commit id macros to make sync easier git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51918 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/extconf.rb | 5 ----- ext/openssl/lib/openssl.rb | 5 ----- ext/openssl/lib/openssl/bn.rb | 7 ------- ext/openssl/lib/openssl/buffering.rb | 5 ----- ext/openssl/lib/openssl/cipher.rb | 7 ------- ext/openssl/lib/openssl/digest.rb | 8 -------- ext/openssl/lib/openssl/ssl.rb | 5 ----- ext/openssl/lib/openssl/x509.rb | 7 ------- ext/openssl/openssl_missing.c | 2 -- ext/openssl/openssl_missing.h | 2 -- ext/openssl/ossl.c | 2 -- ext/openssl/ossl.h | 2 -- ext/openssl/ossl_asn1.c | 1 - ext/openssl/ossl_asn1.h | 1 - ext/openssl/ossl_bio.c | 1 - ext/openssl/ossl_bio.h | 2 -- ext/openssl/ossl_bn.c | 2 -- ext/openssl/ossl_bn.h | 2 -- ext/openssl/ossl_cipher.c | 2 -- ext/openssl/ossl_cipher.h | 2 -- ext/openssl/ossl_config.c | 1 - ext/openssl/ossl_config.h | 2 -- ext/openssl/ossl_digest.c | 1 - ext/openssl/ossl_digest.h | 2 -- ext/openssl/ossl_engine.c | 1 - ext/openssl/ossl_engine.h | 1 - ext/openssl/ossl_hmac.c | 1 - ext/openssl/ossl_hmac.h | 1 - ext/openssl/ossl_ns_spki.c | 2 -- ext/openssl/ossl_ns_spki.h | 2 -- ext/openssl/ossl_ocsp.c | 1 - ext/openssl/ossl_ocsp.h | 1 - ext/openssl/ossl_pkcs12.h | 1 - ext/openssl/ossl_pkcs5.c | 1 - ext/openssl/ossl_pkcs7.c | 1 - ext/openssl/ossl_pkcs7.h | 2 -- ext/openssl/ossl_pkey.c | 2 -- ext/openssl/ossl_pkey.h | 1 - ext/openssl/ossl_pkey_dh.c | 1 - ext/openssl/ossl_pkey_dsa.c | 1 - ext/openssl/ossl_pkey_rsa.c | 2 -- ext/openssl/ossl_rand.c | 2 -- ext/openssl/ossl_rand.h | 2 -- ext/openssl/ossl_ssl.c | 1 - ext/openssl/ossl_ssl.h | 2 -- ext/openssl/ossl_version.h | 1 - ext/openssl/ossl_x509.c | 2 -- ext/openssl/ossl_x509.h | 1 - ext/openssl/ossl_x509attr.c | 1 - ext/openssl/ossl_x509cert.c | 2 -- ext/openssl/ossl_x509crl.c | 2 -- ext/openssl/ossl_x509ext.c | 1 - ext/openssl/ossl_x509name.c | 1 - ext/openssl/ossl_x509req.c | 2 -- ext/openssl/ossl_x509revoked.c | 2 -- ext/openssl/ossl_x509store.c | 1 - ext/openssl/ruby_missing.h | 1 - 57 files changed, 122 deletions(-) (limited to 'ext/openssl') diff --git a/ext/openssl/extconf.rb b/ext/openssl/extconf.rb index 132d8030fa..41dd9bed66 100644 --- a/ext/openssl/extconf.rb +++ b/ext/openssl/extconf.rb @@ -1,7 +1,5 @@ # -*- coding: us-ascii -*- =begin -= $RCSfile$ -- Generator for Makefile - = Info 'OpenSSL for Ruby 2' project Copyright (C) 2002 Michal Rokos @@ -10,9 +8,6 @@ = Licence This program is licensed under the same licence as Ruby. (See the file 'LICENCE'.) - -= Version - $Id$ =end require "mkmf" diff --git a/ext/openssl/lib/openssl.rb b/ext/openssl/lib/openssl.rb index c2a17aae4f..57f6f9704d 100644 --- a/ext/openssl/lib/openssl.rb +++ b/ext/openssl/lib/openssl.rb @@ -1,6 +1,4 @@ =begin -= $RCSfile$ -- Loader for all OpenSSL C-space and Ruby-space definitions - = Info 'OpenSSL for Ruby 2' project Copyright (C) 2002 Michal Rokos @@ -9,9 +7,6 @@ = Licence This program is licensed under the same licence as Ruby. (See the file 'LICENCE'.) - -= Version - $Id$ =end require 'openssl.so' diff --git a/ext/openssl/lib/openssl/bn.rb b/ext/openssl/lib/openssl/bn.rb index 1adf89f704..17148f96dc 100644 --- a/ext/openssl/lib/openssl/bn.rb +++ b/ext/openssl/lib/openssl/bn.rb @@ -1,7 +1,5 @@ #-- # -# $RCSfile$ -# # = Ruby-space definitions that completes C-space funcs for BN # # = Info @@ -12,10 +10,6 @@ # = Licence # This program is licensed under the same licence as Ruby. # (See the file 'LICENCE'.) -# -# = Version -# $Id$ -# #++ module OpenSSL @@ -42,4 +36,3 @@ class Integer OpenSSL::BN::new(self) end end # Integer - diff --git a/ext/openssl/lib/openssl/buffering.rb b/ext/openssl/lib/openssl/buffering.rb index 63444cc45e..a97d9ead4d 100644 --- a/ext/openssl/lib/openssl/buffering.rb +++ b/ext/openssl/lib/openssl/buffering.rb @@ -1,7 +1,5 @@ # coding: binary #-- -#= $RCSfile$ -- Buffering mix-in module. -# #= Info # 'OpenSSL for Ruby 2' project # Copyright (C) 2001 GOTOU YUUZOU @@ -10,9 +8,6 @@ #= Licence # This program is licensed under the same licence as Ruby. # (See the file 'LICENCE'.) -# -#= Version -# $Id$ #++ ## diff --git a/ext/openssl/lib/openssl/cipher.rb b/ext/openssl/lib/openssl/cipher.rb index aacb02ad17..c7f0aec5a2 100644 --- a/ext/openssl/lib/openssl/cipher.rb +++ b/ext/openssl/lib/openssl/cipher.rb @@ -1,7 +1,4 @@ #-- -# -# $RCSfile$ -# # = Ruby-space predefined Cipher subclasses # # = Info @@ -12,10 +9,6 @@ # = Licence # This program is licensed under the same licence as Ruby. # (See the file 'LICENCE'.) -# -# = Version -# $Id$ -# #++ module OpenSSL diff --git a/ext/openssl/lib/openssl/digest.rb b/ext/openssl/lib/openssl/digest.rb index a33ff27669..8bf85103c0 100644 --- a/ext/openssl/lib/openssl/digest.rb +++ b/ext/openssl/lib/openssl/digest.rb @@ -1,7 +1,4 @@ #-- -# -# $RCSfile$ -# # = Ruby-space predefined Digest subclasses # # = Info @@ -12,10 +9,6 @@ # = Licence # This program is licensed under the same licence as Ruby. # (See the file 'LICENCE'.) -# -# = Version -# $Id$ -# #++ module OpenSSL @@ -85,4 +78,3 @@ module OpenSSL module_function :Digest end # OpenSSL - diff --git a/ext/openssl/lib/openssl/ssl.rb b/ext/openssl/lib/openssl/ssl.rb index 631943cc3f..d3ae155a2a 100644 --- a/ext/openssl/lib/openssl/ssl.rb +++ b/ext/openssl/lib/openssl/ssl.rb @@ -1,6 +1,4 @@ =begin -= $RCSfile$ -- Ruby-space definitions that completes C-space funcs for SSL - = Info 'OpenSSL for Ruby 2' project Copyright (C) 2001 GOTOU YUUZOU @@ -9,9 +7,6 @@ = Licence This program is licensed under the same licence as Ruby. (See the file 'LICENCE'.) - -= Version - $Id$ =end require "openssl/buffering" diff --git a/ext/openssl/lib/openssl/x509.rb b/ext/openssl/lib/openssl/x509.rb index 497ffe0a83..e76c6b8c6b 100644 --- a/ext/openssl/lib/openssl/x509.rb +++ b/ext/openssl/lib/openssl/x509.rb @@ -1,7 +1,4 @@ #-- -# -# $RCSfile$ -# # = Ruby-space definitions that completes C-space funcs for X509 and subclasses # # = Info @@ -12,10 +9,6 @@ # = Licence # This program is licensed under the same licence as Ruby. # (See the file 'LICENCE'.) -# -# = Version -# $Id$ -# #++ module OpenSSL diff --git a/ext/openssl/openssl_missing.c b/ext/openssl/openssl_missing.c index 7f879561fd..bd8eef5ea9 100644 --- a/ext/openssl/openssl_missing.c +++ b/ext/openssl/openssl_missing.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -353,4 +352,3 @@ ASN1_put_eoc(unsigned char **pp) return 2; } #endif - diff --git a/ext/openssl/openssl_missing.h b/ext/openssl/openssl_missing.h index 9c06fb7de8..2dc49d3fd2 100644 --- a/ext/openssl/openssl_missing.h +++ b/ext/openssl/openssl_missing.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -195,4 +194,3 @@ int ASN1_put_eoc(unsigned char **pp); #endif /* _OSSL_OPENSSL_MISSING_H_ */ - diff --git a/ext/openssl/ossl.c b/ext/openssl/ossl.c index 1f127ec747..5c14664c38 100644 --- a/ext/openssl/ossl.c +++ b/ext/openssl/ossl.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -1179,4 +1178,3 @@ main(int argc, char *argv[]) return 0; } #endif /* OSSL_DEBUG */ - diff --git a/ext/openssl/ossl.h b/ext/openssl/ossl.h index f69a9d68d9..eca0ef9448 100644 --- a/ext/openssl/ossl.h +++ b/ext/openssl/ossl.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -247,4 +246,3 @@ void Init_openssl(void); #endif #endif /* _OSSL_H_ */ - diff --git a/ext/openssl/ossl_asn1.c b/ext/openssl/ossl_asn1.c index 069a024b53..89da5949b8 100644 --- a/ext/openssl/ossl_asn1.c +++ b/ext/openssl/ossl_asn1.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' team members * Copyright (C) 2003 * All rights reserved. diff --git a/ext/openssl/ossl_asn1.h b/ext/openssl/ossl_asn1.h index c854984ed1..8250746c79 100644 --- a/ext/openssl/ossl_asn1.h +++ b/ext/openssl/ossl_asn1.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' team members * Copyright (C) 2003 * All rights reserved. diff --git a/ext/openssl/ossl_bio.c b/ext/openssl/ossl_bio.c index 2301c6046e..7e3b3070da 100644 --- a/ext/openssl/ossl_bio.c +++ b/ext/openssl/ossl_bio.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' team members * Copyright (C) 2003 * All rights reserved. diff --git a/ext/openssl/ossl_bio.h b/ext/openssl/ossl_bio.h index b1b2dbbbfb..1705d0ac89 100644 --- a/ext/openssl/ossl_bio.h +++ b/ext/openssl/ossl_bio.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' team members * Copyright (C) 2003 * All rights reserved. @@ -18,4 +17,3 @@ VALUE ossl_membio2str(BIO*); VALUE ossl_protect_membio2str(BIO*,int*); #endif - diff --git a/ext/openssl/ossl_bn.c b/ext/openssl/ossl_bn.c index 190dbb1ab8..fba86cdd44 100644 --- a/ext/openssl/ossl_bn.c +++ b/ext/openssl/ossl_bn.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Technorama team * All rights reserved. @@ -1051,4 +1050,3 @@ Init_ossl_bn(void) */ rb_define_method(cBN, "prime_fasttest?", ossl_bn_is_prime_fasttest, -1); } - diff --git a/ext/openssl/ossl_bn.h b/ext/openssl/ossl_bn.h index 5749ecd40c..4cd9d0600a 100644 --- a/ext/openssl/ossl_bn.h +++ b/ext/openssl/ossl_bn.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -22,4 +21,3 @@ void Init_ossl_bn(void); #endif /* _OSS_BN_H_ */ - diff --git a/ext/openssl/ossl_cipher.c b/ext/openssl/ossl_cipher.c index 3e92d65668..1318378c26 100644 --- a/ext/openssl/ossl_cipher.c +++ b/ext/openssl/ossl_cipher.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -1010,4 +1009,3 @@ Init_ossl_cipher(void) rb_define_method(cCipher, "block_size", ossl_cipher_block_size, 0); rb_define_method(cCipher, "padding=", ossl_cipher_set_padding, 1); } - diff --git a/ext/openssl/ossl_cipher.h b/ext/openssl/ossl_cipher.h index 47f47e60de..c444089fc2 100644 --- a/ext/openssl/ossl_cipher.h +++ b/ext/openssl/ossl_cipher.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -19,4 +18,3 @@ VALUE ossl_cipher_new(const EVP_CIPHER *); void Init_ossl_cipher(void); #endif /* _OSSL_CIPHER_H_ */ - diff --git a/ext/openssl/ossl_config.c b/ext/openssl/ossl_config.c index f3dce1ed90..4e00fbe4ad 100644 --- a/ext/openssl/ossl_config.c +++ b/ext/openssl/ossl_config.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_config.h b/ext/openssl/ossl_config.h index dcb50aec21..077e2f7400 100644 --- a/ext/openssl/ossl_config.h +++ b/ext/openssl/ossl_config.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -19,4 +18,3 @@ CONF* DupConfigPtr(VALUE obj); void Init_ossl_config(void); #endif /* _OSSL_CONFIG_H_ */ - diff --git a/ext/openssl/ossl_digest.c b/ext/openssl/ossl_digest.c index 0ed12c5a56..44968dd9e5 100644 --- a/ext/openssl/ossl_digest.c +++ b/ext/openssl/ossl_digest.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_digest.h b/ext/openssl/ossl_digest.h index d5abd279ad..512f7d3a39 100644 --- a/ext/openssl/ossl_digest.h +++ b/ext/openssl/ossl_digest.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -19,4 +18,3 @@ VALUE ossl_digest_new(const EVP_MD *); void Init_ossl_digest(void); #endif /* _OSSL_DIGEST_H_ */ - diff --git a/ext/openssl/ossl_engine.c b/ext/openssl/ossl_engine.c index 0e9bc96c21..890ec724e5 100644 --- a/ext/openssl/ossl_engine.c +++ b/ext/openssl/ossl_engine.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2003 GOTOU Yuuzou * All rights reserved. diff --git a/ext/openssl/ossl_engine.h b/ext/openssl/ossl_engine.h index 10c4553de6..cd548beea3 100644 --- a/ext/openssl/ossl_engine.h +++ b/ext/openssl/ossl_engine.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2003 Michal Rokos * Copyright (C) 2003 GOTOU Yuuzou diff --git a/ext/openssl/ossl_hmac.c b/ext/openssl/ossl_hmac.c index 118af61792..5513cb20de 100644 --- a/ext/openssl/ossl_hmac.c +++ b/ext/openssl/ossl_hmac.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_hmac.h b/ext/openssl/ossl_hmac.h index 078af7b7ac..7c51f4722d 100644 --- a/ext/openssl/ossl_hmac.h +++ b/ext/openssl/ossl_hmac.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_ns_spki.c b/ext/openssl/ossl_ns_spki.c index 94e0667fcf..35c2e3e542 100644 --- a/ext/openssl/ossl_ns_spki.c +++ b/ext/openssl/ossl_ns_spki.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -404,4 +403,3 @@ Init_ossl_ns_spki(void) rb_define_method(cSPKI, "challenge", ossl_spki_get_challenge, 0); rb_define_method(cSPKI, "challenge=", ossl_spki_set_challenge, 1); } - diff --git a/ext/openssl/ossl_ns_spki.h b/ext/openssl/ossl_ns_spki.h index 2c1515233d..62ba8cb163 100644 --- a/ext/openssl/ossl_ns_spki.h +++ b/ext/openssl/ossl_ns_spki.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -18,4 +17,3 @@ extern VALUE eSPKIError; void Init_ossl_ns_spki(void); #endif /* _OSSL_NS_SPKI_H_ */ - diff --git a/ext/openssl/ossl_ocsp.c b/ext/openssl/ossl_ocsp.c index 91665c3f5e..af32d99e01 100644 --- a/ext/openssl/ossl_ocsp.c +++ b/ext/openssl/ossl_ocsp.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2003 Michal Rokos * Copyright (C) 2003 GOTOU Yuuzou diff --git a/ext/openssl/ossl_ocsp.h b/ext/openssl/ossl_ocsp.h index cc33de29e1..c5064fbc85 100644 --- a/ext/openssl/ossl_ocsp.h +++ b/ext/openssl/ossl_ocsp.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2003 Michal Rokos * Copyright (C) 2003 GOTOU Yuuzou diff --git a/ext/openssl/ossl_pkcs12.h b/ext/openssl/ossl_pkcs12.h index 0675fc34eb..7a57377e19 100644 --- a/ext/openssl/ossl_pkcs12.h +++ b/ext/openssl/ossl_pkcs12.h @@ -12,4 +12,3 @@ extern VALUE ePKCS12Error; void Init_ossl_pkcs12(void); #endif /* _OSSL_PKCS12_H_ */ - diff --git a/ext/openssl/ossl_pkcs5.c b/ext/openssl/ossl_pkcs5.c index 6c7738a2b2..73d989e164 100644 --- a/ext/openssl/ossl_pkcs5.c +++ b/ext/openssl/ossl_pkcs5.c @@ -1,5 +1,4 @@ /* - * $Id$ * Copyright (C) 2007 Technorama Ltd. */ #include "ossl.h" diff --git a/ext/openssl/ossl_pkcs7.c b/ext/openssl/ossl_pkcs7.c index cfc2ccc64d..9ca3abd764 100644 --- a/ext/openssl/ossl_pkcs7.c +++ b/ext/openssl/ossl_pkcs7.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_pkcs7.h b/ext/openssl/ossl_pkcs7.h index 0cfea17c5f..139e00d640 100644 --- a/ext/openssl/ossl_pkcs7.h +++ b/ext/openssl/ossl_pkcs7.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -19,4 +18,3 @@ extern VALUE ePKCS7Error; void Init_ossl_pkcs7(void); #endif /* _OSSL_PKCS7_H_ */ - diff --git a/ext/openssl/ossl_pkey.c b/ext/openssl/ossl_pkey.c index 01dab285c6..0b7faf96b2 100644 --- a/ext/openssl/ossl_pkey.c +++ b/ext/openssl/ossl_pkey.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -451,4 +450,3 @@ Init_ossl_pkey(void) Init_ossl_dh(); Init_ossl_ec(); } - diff --git a/ext/openssl/ossl_pkey.h b/ext/openssl/ossl_pkey.h index 6ba4ed5e59..7288d5af7f 100644 --- a/ext/openssl/ossl_pkey.h +++ b/ext/openssl/ossl_pkey.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_pkey_dh.c b/ext/openssl/ossl_pkey_dh.c index 6de2d32051..2f79bfb2f6 100644 --- a/ext/openssl/ossl_pkey_dh.c +++ b/ext/openssl/ossl_pkey_dh.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_pkey_dsa.c b/ext/openssl/ossl_pkey_dsa.c index b8e415dfa9..d5d55eece6 100644 --- a/ext/openssl/ossl_pkey_dsa.c +++ b/ext/openssl/ossl_pkey_dsa.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_pkey_rsa.c b/ext/openssl/ossl_pkey_rsa.c index 699383f683..20b993abb8 100644 --- a/ext/openssl/ossl_pkey_rsa.c +++ b/ext/openssl/ossl_pkey_rsa.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -700,4 +699,3 @@ Init_ossl_rsa(void) { } #endif /* NO_RSA */ - diff --git a/ext/openssl/ossl_rand.c b/ext/openssl/ossl_rand.c index 32a4290bf9..018ef977ab 100644 --- a/ext/openssl/ossl_rand.c +++ b/ext/openssl/ossl_rand.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * @@ -227,4 +226,3 @@ Init_ossl_rand(void) #endif /* HAVE_RAND_EGD */ rb_define_module_function(mRandom, "status?", ossl_rand_status, 0); } - diff --git a/ext/openssl/ossl_rand.h b/ext/openssl/ossl_rand.h index db635f89ff..8f77a3b239 100644 --- a/ext/openssl/ossl_rand.h +++ b/ext/openssl/ossl_rand.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -17,4 +16,3 @@ extern VALUE eRandomError; void Init_ossl_rand(void); #endif /* _OSSL_RAND_H_ */ - diff --git a/ext/openssl/ossl_ssl.c b/ext/openssl/ossl_ssl.c index 47111f69a8..3e6e164682 100644 --- a/ext/openssl/ossl_ssl.c +++ b/ext/openssl/ossl_ssl.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2000-2002 GOTOU Yuuzou * Copyright (C) 2001-2002 Michal Rokos diff --git a/ext/openssl/ossl_ssl.h b/ext/openssl/ossl_ssl.h index aa5a550c22..f92f0289d6 100644 --- a/ext/openssl/ossl_ssl.h +++ b/ext/openssl/ossl_ssl.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -39,4 +38,3 @@ void Init_ossl_ssl(void); void Init_ossl_ssl_session(void); #endif /* _OSSL_SSL_H_ */ - diff --git a/ext/openssl/ossl_version.h b/ext/openssl/ossl_version.h index 605da19c63..dcd026a19c 100644 --- a/ext/openssl/ossl_version.h +++ b/ext/openssl/ossl_version.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_x509.c b/ext/openssl/ossl_x509.c index 332146a3ec..2fd14566cd 100644 --- a/ext/openssl/ossl_x509.c +++ b/ext/openssl/ossl_x509.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -101,4 +100,3 @@ Init_ossl_x509(void) DefX509Default(CERT_FILE_ENV, cert_file_env); DefX509Default(PRIVATE_DIR, private_dir); } - diff --git a/ext/openssl/ossl_x509.h b/ext/openssl/ossl_x509.h index c803a59f04..8e9b233098 100644 --- a/ext/openssl/ossl_x509.h +++ b/ext/openssl/ossl_x509.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_x509attr.c b/ext/openssl/ossl_x509attr.c index 10e511d21d..d0f41c6bb8 100644 --- a/ext/openssl/ossl_x509attr.c +++ b/ext/openssl/ossl_x509attr.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_x509cert.c b/ext/openssl/ossl_x509cert.c index 376db67986..b1d57bf380 100644 --- a/ext/openssl/ossl_x509cert.c +++ b/ext/openssl/ossl_x509cert.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -861,4 +860,3 @@ Init_ossl_x509cert(void) rb_define_method(cX509Cert, "add_extension", ossl_x509_add_extension, 1); rb_define_method(cX509Cert, "inspect", ossl_x509_inspect, 0); } - diff --git a/ext/openssl/ossl_x509crl.c b/ext/openssl/ossl_x509crl.c index 7133c7a901..7293fce5a6 100644 --- a/ext/openssl/ossl_x509crl.c +++ b/ext/openssl/ossl_x509crl.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -552,4 +551,3 @@ Init_ossl_x509crl(void) rb_define_method(cX509CRL, "extensions=", ossl_x509crl_set_extensions, 1); rb_define_method(cX509CRL, "add_extension", ossl_x509crl_add_extension, 1); } - diff --git a/ext/openssl/ossl_x509ext.c b/ext/openssl/ossl_x509ext.c index 1e65f2bc52..70a117cc4a 100644 --- a/ext/openssl/ossl_x509ext.c +++ b/ext/openssl/ossl_x509ext.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_x509name.c b/ext/openssl/ossl_x509name.c index 565a7cd18f..a0e28e29ec 100644 --- a/ext/openssl/ossl_x509name.c +++ b/ext/openssl/ossl_x509name.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ossl_x509req.c b/ext/openssl/ossl_x509req.c index aa5c423c1e..05d7ef9971 100644 --- a/ext/openssl/ossl_x509req.c +++ b/ext/openssl/ossl_x509req.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -483,4 +482,3 @@ Init_ossl_x509req(void) rb_define_method(cX509Req, "attributes=", ossl_x509req_set_attributes, 1); rb_define_method(cX509Req, "add_attribute", ossl_x509req_add_attribute, 1); } - diff --git a/ext/openssl/ossl_x509revoked.c b/ext/openssl/ossl_x509revoked.c index 5c257f4fe9..0a949e7688 100644 --- a/ext/openssl/ossl_x509revoked.c +++ b/ext/openssl/ossl_x509revoked.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. @@ -244,4 +243,3 @@ Init_ossl_x509revoked(void) rb_define_method(cX509Rev, "extensions=", ossl_x509revoked_set_extensions, 1); rb_define_method(cX509Rev, "add_extension", ossl_x509revoked_add_extension, 1); } - diff --git a/ext/openssl/ossl_x509store.c b/ext/openssl/ossl_x509store.c index fbb83159b7..bb6fe14d87 100644 --- a/ext/openssl/ossl_x509store.c +++ b/ext/openssl/ossl_x509store.c @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. diff --git a/ext/openssl/ruby_missing.h b/ext/openssl/ruby_missing.h index a43f942571..d7384ec32c 100644 --- a/ext/openssl/ruby_missing.h +++ b/ext/openssl/ruby_missing.h @@ -1,5 +1,4 @@ /* - * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2003 Michal Rokos * All rights reserved. -- cgit v1.2.3