crypto-utils-js
Version:
JavaScript library for encryption / decryption.
16 lines (15 loc) • 422 B
text/typescript
/*
* Hex
* Hexadecimal is the name of the numbering
* system that is base 16. This system,
* therefore, has numerals 0 - 15.
*
* That means that two-digit decimal numbers
* 10 - 15 must be represented by a single
* numeral to exist in this numbering system.
* "A"–"F" respectively.
*
* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
* 0 1 2 3 4 5 6 7 8 9 A B C D E F
*/
export { hex } from './hex';