ripple-binary-codec
Version:
XRP Ledger binary codec
51 lines (50 loc) • 1.41 kB
TypeScript
import { Hash256 } from './types';
import { BytesList } from './serdes/binary-serializer';
/**
* Class for hashing with SHA512
* @extends BytesList So SerializedTypes can write bytes to a Sha512Half
*/
declare class Sha512Half extends BytesList {
private hash;
/**
* Construct a new Sha512Hash and write bytes this.hash
*
* @param bytes bytes to write to this.hash
* @returns the new Sha512Hash object
*/
static put(bytes: Uint8Array): Sha512Half;
/**
* Write bytes to an existing Sha512Hash
*
* @param bytes bytes to write to object
* @returns the Sha512 object
*/
put(bytes: Uint8Array): Sha512Half;
/**
* Compute SHA512 hash and slice in half
*
* @returns half of a SHA512 hash
*/
finish256(): Uint8Array;
/**
* Constructs a Hash256 from the Sha512Half object
*
* @returns a Hash256 object
*/
finish(): Hash256;
}
/**
* compute SHA512 hash of a list of bytes
*
* @param args zero or more arguments to hash
* @returns the sha512half hash of the arguments.
*/
declare function sha512Half(...args: Uint8Array[]): Uint8Array;
/**
* Construct a transactionID from a Serialized Transaction
*
* @param serialized bytes to hash
* @returns a Hash256 object
*/
declare function transactionID(serialized: Uint8Array): Hash256;
export { Sha512Half, sha512Half, transactionID };