Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
Add public key to address transformation (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme committed Oct 13, 2020
1 parent c28cfe2 commit 3492f09
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
24 changes: 24 additions & 0 deletions eth/src/main/java/org/apache/tuweni/eth/Address.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,36 @@

import org.apache.tuweni.bytes.Bytes;
import org.apache.tuweni.bytes.DelegatingBytes;
import org.apache.tuweni.crypto.SECP256K1;

/**
* An Ethereum account address.
*/
public final class Address extends DelegatingBytes {

/**
* Transform a public key into an Ethereum address.
*
* @param publicKey the public key
* @return the address
*/
public static Address fromPublicKey(SECP256K1.PublicKey publicKey) {
requireNonNull(publicKey);
return fromPublicKeyBytes(publicKey.bytes());
}

/**
* Transform a public key into an Ethereum address.
*
* @param bytes the bytes of the public key
* @return the address
*/
public static Address fromPublicKeyBytes(Bytes bytes) {
requireNonNull(bytes);
Bytes value = org.apache.tuweni.crypto.Hash.keccak256(bytes);
return new Address(value.slice(12));
}

/**
* Create an address from Bytes.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* 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.tuweni.eth;

import static org.junit.jupiter.api.Assertions.assertEquals;

import org.apache.tuweni.bytes.Bytes32;
import org.apache.tuweni.crypto.SECP256K1;
import org.apache.tuweni.junit.BouncyCastleExtension;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;

@ExtendWith(BouncyCastleExtension.class)
class PublicKeyToAddressTest {

@Test
public void testTransformFromSecretKeyToAddress() {
SECP256K1.SecretKey key = SECP256K1.SecretKey
.fromBytes(Bytes32.fromHexString("4ee50b74f1f903a80df52c4f6b43a17bc1319636e203f3fe9c09294f74907849"));
SECP256K1.PublicKey pk = SECP256K1.KeyPair.fromSecretKey(key).publicKey();
Address addr = Address.fromPublicKeyBytes(pk.bytes());
assertEquals(Address.fromHexString("0x25851ab5f8151a68d0014fd508609bbf6b4d6d1d"), addr);
}
}

0 comments on commit 3492f09

Please sign in to comment.