File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
main/java/org/apache/spark/network
test/java/org/apache/spark/network/sasl Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 7676 <artifactId >guava</artifactId >
7777 <scope >compile</scope >
7878 </dependency >
79+ <dependency >
80+ <groupId >org.apache.commons</groupId >
81+ <artifactId >commons-crypto</artifactId >
82+ <version >${commons-crypto.version} </version >
83+ </dependency >
7984
8085 <!-- Test dependencies -->
8186 <dependency >
97102 <artifactId >slf4j-log4j12</artifactId >
98103 <scope >test</scope >
99104 </dependency >
100- <dependency >
101- <groupId >org.apache.commons</groupId >
102- <artifactId >commons-crypto</artifactId >
103- <version >${commons-crypto.version} </version >
104- </dependency >
105105 </dependencies >
106106
107107 <build >
Original file line number Diff line number Diff line change 2929 * authentication.
3030 */
3131public class SaslServerBootstrap implements TransportServerBootstrap {
32+
3233 private final TransportConf conf ;
3334 private final SecretKeyHolder secretKeyHolder ;
3435
Original file line number Diff line number Diff line change 1818package org .apache .spark .network .util ;
1919
2020import com .google .common .primitives .Ints ;
21- import io .netty .handler .ssl .CipherSuiteFilter ;
22- import org .apache .commons .crypto .cipher .CryptoCipherFactory ;
21+
2322/**
2423 * A central location that tracks all the settings we expose to users.
2524 */
Original file line number Diff line number Diff line change 4141import io .netty .channel .ChannelHandlerContext ;
4242import io .netty .channel .ChannelOutboundHandlerAdapter ;
4343import io .netty .channel .ChannelPromise ;
44- import org .apache .spark .network .sasl .aes .SparkAesCipher ;
4544import org .junit .Test ;
4645import org .mockito .invocation .InvocationOnMock ;
4746import org .mockito .stubbing .Answer ;
5453import org .apache .spark .network .client .RpcResponseCallback ;
5554import org .apache .spark .network .client .TransportClient ;
5655import org .apache .spark .network .client .TransportClientBootstrap ;
56+ import org .apache .spark .network .sasl .aes .SparkAesCipher ;
5757import org .apache .spark .network .server .RpcHandler ;
5858import org .apache .spark .network .server .StreamManager ;
5959import org .apache .spark .network .server .TransportServer ;
You can’t perform that action at this time.
0 commit comments