licensing update to APSL 2.0
[org.ibex.crypto.git] / src / org / ibex / crypto / PKCS1.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.crypto;
6 import java.security.SecureRandom;
7
8 public class PKCS1 {
9     private final RSA rsa;
10     private final SecureRandom srand;
11     public PKCS1(RSA rsa) { this(rsa,new SecureRandom()); }
12     public PKCS1(RSA rsa,SecureRandom srand) { this.rsa = rsa; this.srand = srand; }
13     
14     public byte[] encode(byte[] in) {
15         int size = rsa.getInputBlockSize();
16         if(in.length > size -  11) throw new IllegalArgumentException("message too long");
17         byte[] buf = new byte[size];
18         byte[] rand = new byte[size - in.length - 2];
19         srand.nextBytes(rand);
20         for(int i=0;i<rand.length;i++) while(rand[i] == 0) rand[i] = (byte)srand.nextInt();
21         int p=0;
22         buf[p++] = 0x02;
23         System.arraycopy(rand,0,buf,p,rand.length);
24         p+=rand.length;
25         buf[p++]  = 0x0;
26         System.arraycopy(in,0,buf,p,in.length);
27
28         return rsa.process(buf);
29     }
30     
31     public byte[] decode(byte[] in) throws Exn {
32         byte[] buf = rsa.process(in);
33         if(buf.length < 10) throw new Exn("Data too short");
34         if(buf[0] != 2 && buf[0] != 1) throw new Exn("Data not in correct format " + (buf[0]&0xff));
35         int start = 9;
36         while(start < buf.length && buf[start] != 0) start++;
37         if(start == buf.length) throw new Exn("No null separator");
38         start++;
39         byte[] ret = new byte[buf.length - start];
40         System.arraycopy(buf,start,ret,0,ret.length);
41         return ret;
42     }
43     
44     public static class Exn extends Exception { public Exn(String s) { super(s); } }
45 }