ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/tomcat/util/net/TestTLSClientHelloExtractor.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/tomcat/util/net/TestTLSClientHelloExtractor.java
Status
scanned
Type
file
Name
TestTLSClientHelloExtractor.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
3013 (2.9 KB)
MD5
9fadaf44a5c54c47af4858d5380b9376
SHA1
615b36ea7d1e92d1aa732252dffe54799bd675b4
SHA256
8eb1f45356918b1ef69ed029a176f59d318e5507f937d036a285a40efce27670
SHA512

      
    
SHA1_git
3d29f6753c73398f34fa407460ce58c13751a9dc
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestTLSClientHelloExtractor.java | 2.9 KB |

/* * 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. */ package org.apache.tomcat.util.net; import java.io.IOException; import java.nio.ByteBuffer; import org.junit.Assert; import org.junit.Test; import org.apache.tomcat.util.net.TLSClientHelloExtractor.ExtractorResult; public class TestTLSClientHelloExtractor { @Test public void testInputNeedRead01() throws IOException { ByteBuffer testInput = ByteBuffer.allocate(1024); doTestInputNeedRead(testInput); } @Test(expected=IOException.class) public void testInputMalformed01() throws IOException { ByteBuffer testInput = ByteBuffer.allocate(1024); // TLS handshake testInput.put((byte) 22); // TLS 1.0 testInput.put((byte) 3); testInput.put((byte) 1); // Record length 0 (correct, but not legal) testInput.put((byte) 0); testInput.put((byte) 0); doTestInputNeedRead(testInput); } @Test(expected=IOException.class) public void testInputMalformed02() throws IOException { ByteBuffer testInput = ByteBuffer.allocate(1024); // TLS handshake testInput.put((byte) 22); // TLS 1.0 testInput.put((byte) 3); testInput.put((byte) 1); // Record length 4 testInput.put((byte) 0); testInput.put((byte) 4); // Type 1 (client hello) testInput.put((byte) 1); // Client hello size 0 (correct, but not legal) testInput.put((byte) 0); testInput.put((byte) 0); testInput.put((byte) 0); doTestInputNeedRead(testInput); } public void doTestInputMalformed(ByteBuffer input) throws IOException { TLSClientHelloExtractor extractor = new TLSClientHelloExtractor(input); // Expect this to fail extractor.getResult(); } public void doTestInputNeedRead(ByteBuffer input) throws IOException { TLSClientHelloExtractor extractor = new TLSClientHelloExtractor(input); // Expect this to fail ExtractorResult result = extractor.getResult(); Assert.assertEquals(ExtractorResult.NEED_READ, result); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
36.5
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9