forked from apache/commons-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PROPOSAL.html
179 lines (75 loc) · 4.38 KB
/
PROPOSAL.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
<title>Proposal for Apache Commons Crypto Package</title>
</head>
<body bgcolor="white">
<div align="center">
<h1>Proposal for <em>Apache Commons Crypto</em> Package</h1>
</div>
<h3>(0) Rationale</h3>
<p>Providing Java based optimized and high performance cryptographic IO streams for
the applications who wants to implement the data encryption. It also provides cipher
level API to use. It does provide the openssl API integration and provide the fallback
mechanism to use JCE when openssl library unavailable.</p>
<p>(Note: Please note that Commons Crypto doesn’t
implement the cryptographic algorithm such as AES directly. It wraps to Openssl or JCE
which implement algorithms.)</p>
<h3>(1) Scope of the Package</h3>
<p>This proposal is to create a package of cryptographic IO classes with the integration
of Openssl library. </p>
<p>It focuses on AES-NI optimizations mainly and it can be extended to other algorithms
based on demand from the users later.</p>
<h3>(1.5) Interaction With Other Packages</h3>
<p><em>IO</em> Commons Crypto relies on standard JDK 7 (or later) APIs for production
deployment and on OpenSSL 1.0.1c devl libraries. It utilizes the JUnit unit testing
framework, but this is of interest only to developers of the component.
The functionality provided by Commons Crypto is currently in use by Apache Hadoop
and Apache Spark, and both of those communities have expressed interest in changing
their dependency to be on the central Commons Crypto package once it exists.</p>
<h3>(2) Initial Source of the Package</h3>
<p>The initial classes came from the Apache Hadoop.</p>
<p>The proposed package name for the new component is <code>org.apache.commons.crypto</code>.</p>
<h3>(3) Required Apache Commons Resources</h3>
<ul>
<li>Git Repository - New repository <code>commons-crypto</code>
<li>Mailing List - Discussions will take place on the general <em>[email protected]</em>
mailing list.
<br>To help list subscribers identify messages of interest,
it is suggested that the message subject of messages about this component
be prefixed with [Crypto]. </br></li>
<li>JIRA - New component "Crypto" under the "Commons" project.</li>
<li>Confluence FAQ - New category “commons-crypto" (when available).</li>
</ul>
<h3>(4) Initial Committers</h3>
<ul>
<li>Aaron T Myers ([email protected], Apache Hadoop PMC, one of the original Crypto dev team in Apache Hadoop)</li>
<li>Andrew Wang ([email protected], Apache Hadoop PMC, one of the original Crypto dev team in Apache Hadoop)</li>
<li>Chris Nauroth ([email protected], Apache Hadoop PMC and active reviewer)</li>
<li>Colin P. McCabe ([email protected], Apache Hadoop PMC, one of the original Crypto dev team in Apache Hadoop)</li>
<li>Dapeng Sun ([email protected], Apache Sentry Committer, Chimera contributor)</li>
<li>Dian Fu ([email protected], Apache Sqoop Committer, Chimera contributor)</li>
<li>Dong Chen ([email protected], Apache Hive Committer,interested on Chimera)</li>
<li>Ferdinand Xu ([email protected], Apache Hive Committer, Chimera contributor)</li>
<li>Haifeng Chen ([email protected], Chimera lead and code contributor)</li>
<li>Marcelo Vanzin(Apache Spark Committer, Chimera contributor)</li>
<li>Uma Maheswara Rao G([email protected], Apache Hadoop PMC, One of Crypto dev/review in Apache Hadoop)</li>
<li>Yi Liu ([email protected], Apache Hadoop PMC, One of Crypto dev/review in Apache Hadoop)</li>
</ul>
<br>
</body>
</html>