org.bitcoinj.crypto.X509Utils Java Examples

The following examples show how to use org.bitcoinj.crypto.X509Utils. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PaymentProtocolTest.java    From bcm-android with GNU General Public License v3.0 6 votes vote down vote up
@Test
public void testSignAndVerifyValid() throws Exception {
    Protos.PaymentRequest.Builder paymentRequest = minimalPaymentRequest().toBuilder();

    // Sign
    KeyStore keyStore = X509Utils
            .loadKeyStore("JKS", "password", getClass().getResourceAsStream("test-valid-cert"));
    PrivateKey privateKey = (PrivateKey) keyStore.getKey("test-valid", "password".toCharArray());
    X509Certificate clientCert = (X509Certificate) keyStore.getCertificate("test-valid");
    PaymentProtocol.signPaymentRequest(paymentRequest, new X509Certificate[]{clientCert}, privateKey);

    // Verify
    PkiVerificationData verificationData = PaymentProtocol.verifyPaymentRequestPki(paymentRequest.build(), caStore);
    assertNotNull(verificationData);
    assertEquals(caCert, verificationData.rootAuthority.getTrustedCert());
}
 
Example #2
Source File: PaymentProtocolTest.java    From green_android with GNU General Public License v3.0 6 votes vote down vote up
@Test
public void testSignAndVerifyValid() throws Exception {
    Protos.PaymentRequest.Builder paymentRequest = minimalPaymentRequest().toBuilder();

    // Sign
    KeyStore keyStore = X509Utils
            .loadKeyStore("JKS", "password", getClass().getResourceAsStream("test-valid-cert"));
    PrivateKey privateKey = (PrivateKey) keyStore.getKey("test-valid", "password".toCharArray());
    X509Certificate clientCert = (X509Certificate) keyStore.getCertificate("test-valid");
    PaymentProtocol.signPaymentRequest(paymentRequest, new X509Certificate[]{clientCert}, privateKey);

    // Verify
    PkiVerificationData verificationData = PaymentProtocol.verifyPaymentRequestPki(paymentRequest.build(), caStore);
    assertNotNull(verificationData);
    assertEquals(caCert, verificationData.rootAuthority.getTrustedCert());
}
 
Example #3
Source File: PaymentProtocolTest.java    From GreenBits with GNU General Public License v3.0 6 votes vote down vote up
@Test
public void testSignAndVerifyValid() throws Exception {
    Protos.PaymentRequest.Builder paymentRequest = minimalPaymentRequest().toBuilder();

    // Sign
    KeyStore keyStore = X509Utils
            .loadKeyStore("JKS", "password", getClass().getResourceAsStream("test-valid-cert"));
    PrivateKey privateKey = (PrivateKey) keyStore.getKey("test-valid", "password".toCharArray());
    X509Certificate clientCert = (X509Certificate) keyStore.getCertificate("test-valid");
    PaymentProtocol.signPaymentRequest(paymentRequest, new X509Certificate[]{clientCert}, privateKey);

    // Verify
    PkiVerificationData verificationData = PaymentProtocol.verifyPaymentRequestPki(paymentRequest.build(), caStore);
    assertNotNull(verificationData);
    assertEquals(caCert, verificationData.rootAuthority.getTrustedCert());
}
 
Example #4
Source File: PaymentProtocol.java    From bcm-android with GNU General Public License v3.0 5 votes vote down vote up
private PkiVerificationData(@Nullable String displayName, PublicKey merchantSigningKey,
                            TrustAnchor rootAuthority) throws PaymentProtocolException.PkiVerificationException {
    try {
        this.displayName = displayName;
        this.merchantSigningKey = merchantSigningKey;
        this.rootAuthority = rootAuthority;
        this.rootAuthorityName = X509Utils.getDisplayNameFromCertificate(rootAuthority.getTrustedCert(), true);
    } catch (CertificateParsingException x) {
        throw new PaymentProtocolException.PkiVerificationException(x);
    }
}
 
Example #5
Source File: PaymentProtocolTest.java    From bcm-android with GNU General Public License v3.0 5 votes vote down vote up
@Test(expected = PkiVerificationException.class)
public void testSignAndVerifyExpired() throws Exception {
    Protos.PaymentRequest.Builder paymentRequest = minimalPaymentRequest().toBuilder();

    // Sign
    KeyStore keyStore = X509Utils.loadKeyStore("JKS", "password",
            getClass().getResourceAsStream("test-expired-cert"));
    PrivateKey privateKey = (PrivateKey) keyStore.getKey("test-expired", "password".toCharArray());
    X509Certificate clientCert = (X509Certificate) keyStore.getCertificate("test-expired");
    PaymentProtocol.signPaymentRequest(paymentRequest, new X509Certificate[]{clientCert}, privateKey);

    // Verify
    PaymentProtocol.verifyPaymentRequestPki(paymentRequest.build(), caStore);
}
 
Example #6
Source File: PaymentProtocol.java    From green_android with GNU General Public License v3.0 5 votes vote down vote up
private PkiVerificationData(@Nullable String displayName, PublicKey merchantSigningKey,
                            TrustAnchor rootAuthority) throws PaymentProtocolException.PkiVerificationException {
    try {
        this.displayName = displayName;
        this.merchantSigningKey = merchantSigningKey;
        this.rootAuthority = rootAuthority;
        this.rootAuthorityName = X509Utils.getDisplayNameFromCertificate(rootAuthority.getTrustedCert(), true);
    } catch (CertificateParsingException x) {
        throw new PaymentProtocolException.PkiVerificationException(x);
    }
}
 
Example #7
Source File: PaymentProtocolTest.java    From green_android with GNU General Public License v3.0 5 votes vote down vote up
@Test(expected = PkiVerificationException.class)
public void testSignAndVerifyExpired() throws Exception {
    Protos.PaymentRequest.Builder paymentRequest = minimalPaymentRequest().toBuilder();

    // Sign
    KeyStore keyStore = X509Utils.loadKeyStore("JKS", "password",
            getClass().getResourceAsStream("test-expired-cert"));
    PrivateKey privateKey = (PrivateKey) keyStore.getKey("test-expired", "password".toCharArray());
    X509Certificate clientCert = (X509Certificate) keyStore.getCertificate("test-expired");
    PaymentProtocol.signPaymentRequest(paymentRequest, new X509Certificate[]{clientCert}, privateKey);

    // Verify
    PaymentProtocol.verifyPaymentRequestPki(paymentRequest.build(), caStore);
}
 
Example #8
Source File: PaymentProtocol.java    From GreenBits with GNU General Public License v3.0 5 votes vote down vote up
private PkiVerificationData(@Nullable String displayName, PublicKey merchantSigningKey,
                            TrustAnchor rootAuthority) throws PaymentProtocolException.PkiVerificationException {
    try {
        this.displayName = displayName;
        this.merchantSigningKey = merchantSigningKey;
        this.rootAuthority = rootAuthority;
        this.rootAuthorityName = X509Utils.getDisplayNameFromCertificate(rootAuthority.getTrustedCert(), true);
    } catch (CertificateParsingException x) {
        throw new PaymentProtocolException.PkiVerificationException(x);
    }
}
 
Example #9
Source File: PaymentProtocolTest.java    From GreenBits with GNU General Public License v3.0 5 votes vote down vote up
@Test(expected = PkiVerificationException.class)
public void testSignAndVerifyExpired() throws Exception {
    Protos.PaymentRequest.Builder paymentRequest = minimalPaymentRequest().toBuilder();

    // Sign
    KeyStore keyStore = X509Utils.loadKeyStore("JKS", "password",
            getClass().getResourceAsStream("test-expired-cert"));
    PrivateKey privateKey = (PrivateKey) keyStore.getKey("test-expired", "password".toCharArray());
    X509Certificate clientCert = (X509Certificate) keyStore.getCertificate("test-expired");
    PaymentProtocol.signPaymentRequest(paymentRequest, new X509Certificate[]{clientCert}, privateKey);

    // Verify
    PaymentProtocol.verifyPaymentRequestPki(paymentRequest.build(), caStore);
}
 
Example #10
Source File: PaymentProtocolTest.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
@Before
public void setUp() throws Exception {
    caStore = X509Utils.loadKeyStore("JKS", "password", getClass().getResourceAsStream("test-cacerts"));
    caCert = (X509Certificate) caStore.getCertificate("test-cacert");
}
 
Example #11
Source File: PaymentProtocolTest.java    From green_android with GNU General Public License v3.0 4 votes vote down vote up
@Before
public void setUp() throws Exception {
    caStore = X509Utils.loadKeyStore("JKS", "password", getClass().getResourceAsStream("test-cacerts"));
    caCert = (X509Certificate) caStore.getCertificate("test-cacert");
}
 
Example #12
Source File: PaymentProtocolTest.java    From GreenBits with GNU General Public License v3.0 4 votes vote down vote up
@Before
public void setUp() throws Exception {
    caStore = X509Utils.loadKeyStore("JKS", "password", getClass().getResourceAsStream("test-cacerts"));
    caCert = (X509Certificate) caStore.getCertificate("test-cacert");
}