aboutsummaryrefslogtreecommitdiffstats
path: root/sshlib/src/test/java/com/trilead/ssh2/crypto/SimpleDERReaderTest.java
blob: 3eaec20ea6f1afd0e11c3d272f6d6fdb6f6e4527 (plain)
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
package com.trilead.ssh2.crypto;

import org.junit.Test;

import java.io.IOException;

import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;

/**
 * Created by kenny on 12/25/15.
 */
public class SimpleDERReaderTest {
    @Test
    public void readLength_Extended_OverlyLongLength() throws Exception {
        byte[] vector = new byte[] {
                (byte) 0x85, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF
        };
        SimpleDERReader reader = new SimpleDERReader(vector);
        assertEquals(-1, reader.readLength());
    }

    @Test
    public void readLength_Extended_TooLongForInt() throws Exception {
        byte[] vector = new byte[] {
                (byte) 0x84, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF
        };
        SimpleDERReader reader = new SimpleDERReader(vector);
        assertEquals(-1, reader.readLength());
    }

    @Test
    public void readLength_Extended_Zero() throws Exception {
        byte[] vector = new byte[] {
                (byte) 0x80, (byte) 0x01
        };
        SimpleDERReader reader = new SimpleDERReader(vector);
        assertEquals(-1, reader.readLength());
    }

    @Test
    public void readLength_Extended_Valid() throws Exception {
        byte[] vector = new byte[] {
                (byte) 0x82, (byte) 0x05, (byte) 0xFF
        };
        SimpleDERReader reader = new SimpleDERReader(vector);
        assertEquals(0x5FF, reader.readLength());
    }

    @Test
    public void readLength_Short_Zero() throws Exception {
        byte[] vector = new byte[] {
                (byte) 0x00
        };
        SimpleDERReader reader = new SimpleDERReader(vector);
        assertEquals(0, reader.readLength());
    }

    @Test
    public void readLength_Short_Regular() throws Exception {
        byte[] vector = new byte[] {
                (byte) 0x09
        };
        SimpleDERReader reader = new SimpleDERReader(vector);
        assertEquals(9, reader.readLength());
    }
}