bicrypt 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.ruby +40 -0
- data/{LICENSE → APACHE2.txt} +0 -0
- data/HISTORY.rdoc +12 -1
- data/NOTICE.rdoc +19 -0
- data/README.rdoc +17 -20
- data/lib/bicrypt.rb +2 -0
- data/qed/{01_example.rb → 01_example.rdoc} +0 -0
- metadata +11 -11
- data/meta/package +0 -8
- data/meta/profile +0 -21
data/.ruby
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
spec_version: 1.0.0
|
3
|
+
replaces: []
|
4
|
+
|
5
|
+
loadpath:
|
6
|
+
- lib
|
7
|
+
name: bicrypt
|
8
|
+
repositories: {}
|
9
|
+
|
10
|
+
conflicts: []
|
11
|
+
|
12
|
+
engine_check: []
|
13
|
+
|
14
|
+
title: BiCrypt
|
15
|
+
resources:
|
16
|
+
code: http://github.com/rubyworks/bicrypt
|
17
|
+
docs: http://rubydoc.info/gems/bicrypt
|
18
|
+
home: http://rubyworks.github.com/bicrypt
|
19
|
+
maintainers: []
|
20
|
+
|
21
|
+
requires:
|
22
|
+
- group:
|
23
|
+
- build
|
24
|
+
name: redline
|
25
|
+
version: 0+
|
26
|
+
- group:
|
27
|
+
- test
|
28
|
+
name: qed
|
29
|
+
version: 0+
|
30
|
+
manifest: Manifest.txt
|
31
|
+
version: 1.1.0
|
32
|
+
licenses:
|
33
|
+
- Apache 2.0
|
34
|
+
copyright: Copyright (c) 2007 Thomas Sawyer
|
35
|
+
authors:
|
36
|
+
- Thomas Sawyer
|
37
|
+
organization: Rubyworks
|
38
|
+
description: Simple two-way encryption/decryption class.
|
39
|
+
summary: Simple two-way encyrption/decryption
|
40
|
+
created: 2007-07-01
|
data/{LICENSE → APACHE2.txt}
RENAMED
File without changes
|
data/HISTORY.rdoc
CHANGED
@@ -1,6 +1,17 @@
|
|
1
1
|
= RELEASE HISTORY
|
2
2
|
|
3
|
-
== 1.
|
3
|
+
== 1.1.0 / 2010-10-26
|
4
|
+
|
5
|
+
This release makes one simple change. It removed the String#^
|
6
|
+
extension and replaces it with BiCrypt#xor, thus preventing
|
7
|
+
any potential core extension clashes.
|
8
|
+
|
9
|
+
Changes:
|
10
|
+
|
11
|
+
* Replace String#^ with ByCrypt#xor.
|
12
|
+
|
13
|
+
|
14
|
+
== 1.0.0 / 2009-07-01
|
4
15
|
|
5
16
|
Initial stand-alone release, ported from Ruby Facets.
|
6
17
|
|
data/NOTICE.rdoc
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
= COPYRIGHT NOTICES
|
2
|
+
|
3
|
+
== BiCrypt
|
4
|
+
|
5
|
+
Copyright (c) 2007 Thomas Sawyer
|
6
|
+
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
you may not use this file except in compliance with the License.
|
9
|
+
You may obtain a copy of the License at
|
10
|
+
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
See the License for the specific language governing permissions and
|
17
|
+
limitations under the License.
|
18
|
+
|
19
|
+
(http://rubyworks.github.com/buicrypt)
|
data/README.rdoc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
= BiCrypt
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
License:: Apache 2.0
|
4
|
+
Copyright:: (c) 2007 Thomas Sawyer
|
5
5
|
|
6
6
|
|
7
7
|
== DESCRIPTION
|
@@ -9,10 +9,17 @@
|
|
9
9
|
BiCrypt is a simple two-way encryption class.
|
10
10
|
|
11
11
|
|
12
|
-
== FEATURES
|
12
|
+
== FEATURES
|
13
|
+
|
14
|
+
* Very easy to use.
|
15
|
+
* Good for light-weight "deterrence" applications.
|
16
|
+
|
13
17
|
|
14
|
-
|
15
|
-
|
18
|
+
== RESOURCES
|
19
|
+
|
20
|
+
* home: http://rubyworks.github.com/bicrypt
|
21
|
+
* docs: http://rubydoc.info/gems/bicrypt
|
22
|
+
* code: http://github.com/rubyworks/bicrypt
|
16
23
|
|
17
24
|
|
18
25
|
== RELEASE NOTES
|
@@ -43,21 +50,11 @@ then download the tarball package and type:
|
|
43
50
|
Windows users use 'ruby setup.rb all'.
|
44
51
|
|
45
52
|
|
46
|
-
==
|
53
|
+
== LEGAL
|
47
54
|
|
48
|
-
|
49
|
-
|
50
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
51
|
-
you may not use this file except in compliance with the License.
|
52
|
-
You may obtain a copy of the License at
|
53
|
-
|
54
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
55
|
+
(Apache 2.0 License)
|
55
56
|
|
56
|
-
|
57
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
58
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
59
|
-
See the License for the specific language governing permissions and
|
60
|
-
limitations under the License.
|
61
|
-
|
62
|
-
See LICENSE file for details.
|
57
|
+
Copyright (c) 2007 Thomas Sawyer
|
63
58
|
|
59
|
+
BiCrypt is distibuted under the terms of the Apache 2.0 license.
|
60
|
+
See NOTICE.rdoc and APACHE2.txt file for details.
|
data/lib/bicrypt.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bicrypt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 1
|
10
|
+
version: 1.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Thomas Sawyer
|
@@ -15,11 +15,11 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2011-05-15 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
-
name:
|
22
|
+
name: redline
|
23
23
|
prerelease: false
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
25
|
none: false
|
@@ -55,22 +55,22 @@ extensions: []
|
|
55
55
|
extra_rdoc_files:
|
56
56
|
- README.rdoc
|
57
57
|
files:
|
58
|
+
- .ruby
|
58
59
|
- lib/bicrypt.rb
|
59
|
-
-
|
60
|
-
- meta/profile
|
61
|
-
- qed/01_example.rb
|
60
|
+
- qed/01_example.rdoc
|
62
61
|
- qed/applique/setup.rb
|
63
62
|
- HISTORY.rdoc
|
64
|
-
-
|
63
|
+
- APACHE2.txt
|
65
64
|
- README.rdoc
|
65
|
+
- NOTICE.rdoc
|
66
66
|
has_rdoc: true
|
67
|
-
homepage: http://
|
67
|
+
homepage: http://rubyworks.github.com/bicrypt
|
68
68
|
licenses:
|
69
69
|
- Apache 2.0
|
70
70
|
post_install_message:
|
71
71
|
rdoc_options:
|
72
72
|
- --title
|
73
|
-
-
|
73
|
+
- BiCrypt API
|
74
74
|
- --main
|
75
75
|
- README.rdoc
|
76
76
|
require_paths:
|
data/meta/package
DELETED
data/meta/profile
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title : Bicrypt
|
3
|
-
summary : Simple two-way encyrption/decryption
|
4
|
-
license : Apache 2.0
|
5
|
-
suite : rubyworks
|
6
|
-
created : 2007-07-01
|
7
|
-
|
8
|
-
authors:
|
9
|
-
- Thomas Sawyer
|
10
|
-
|
11
|
-
description:
|
12
|
-
Simple two-way encryption/decryption class.
|
13
|
-
|
14
|
-
resources:
|
15
|
-
home: http://rubydoc.info/gems/bicrypt
|
16
|
-
docs: http://rubydoc.info/gems/bicrypt
|
17
|
-
code: http://github.com/rubyworks/bicrypt
|
18
|
-
|
19
|
-
copyright:
|
20
|
-
Copyright (c) 2007 Thomas Sawyer
|
21
|
-
|