All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fisco.bcos.sdk.crypto.signature.ECDSASignatureResult Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/**
 * Copyright 2014-2020 [fisco-dev]
 *
 * 

Licensed 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.fisco.bcos.sdk.crypto.signature; import java.util.ArrayList; import java.util.List; import org.fisco.bcos.sdk.crypto.exceptions.SignatureException; import org.fisco.bcos.sdk.rlp.RlpString; import org.fisco.bcos.sdk.rlp.RlpType; import org.fisco.bcos.sdk.utils.Hex; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ECDSASignatureResult extends SignatureResult { protected static Logger logger = LoggerFactory.getLogger(SignatureResult.class); protected byte v; protected static int VBASE = 27; public ECDSASignatureResult(byte v, byte[] r, byte[] s) { super(r, s); this.v = v; } public ECDSASignatureResult(final String signatureResult) { super(signatureResult); if (this.signatureBytes.length != 65) { throw new SignatureException( "Invalid signature for invalid length " + this.signatureBytes.length); } this.v = this.signatureBytes[64]; } /** * covert signatureResult into String * * @return the signature string with [r, s, v] */ @Override public String convertToString() { byte[] SignatureBytes = new byte[65]; System.arraycopy(this.r, 0, SignatureBytes, 0, 32); System.arraycopy(this.s, 0, SignatureBytes, 32, 32); SignatureBytes[64] = this.v; return Hex.toHexString(SignatureBytes); } @Override public List encode() { List encodeResult = new ArrayList<>(); int encodedV = this.v + VBASE; encodeResult.add(RlpString.create((byte) encodedV)); super.encodeCommonField(encodeResult); return encodeResult; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy