trezor-core/docs/api.md

335 lines
7.9 KiB
Markdown
Raw Normal View History

2016-02-01 02:52:57 -08:00
#TREZOR OS API
2016-02-02 09:25:27 -08:00
Syntax used below is a valid Python function declaration with type hints defined in [PEP 0484](https://www.python.org/dev/peps/pep-0484/).
2016-02-01 08:48:26 -08:00
##trezor.crypto
###trezor.crypto.base58
``` python
def trezor.crypto.base58.encode(data: bytes) -> str
```
``` python
def trezor.crypto.base58.decode(string: str) -> bytes
```
``` python
def trezor.crypto.base58.encode_check(data: bytes) -> str
```
``` python
def trezor.crypto.base58.decode_check(string: str) -> bytes
```
###trezor.crypto.curve
2016-05-05 13:12:26 -07:00
####trezor.crypto.curve.ed25519
``` python
def trezor.crypto.curve.ed25519.publickey(self, secret_key: bytes) -> bytes
```
2016-05-05 13:44:47 -07:00
Computes public key from secret key.
``` python
def trezor.crypto.curve.ed25519.sign(self, secret_key: bytes, message: bytes) -> bytes
```
2016-05-05 13:44:47 -07:00
Uses secret key to produce the signature of message.
``` python
def trezor.crypto.curve.ed25519.verify(self, public_key: bytes, signature: bytes, message: bytes) -> bool
```
2016-05-05 13:44:47 -07:00
Uses public key to verify the signature of the message
Returns True on success.
2016-05-05 13:12:26 -07:00
####trezor.crypto.curve.nist256p1
``` python
def trezor.crypto.curve.nist256p1.publickey(self, secret_key: bytes, compressed: bool=True) -> bytes
```
2016-05-05 13:44:47 -07:00
Computes public key from secret key.
``` python
def trezor.crypto.curve.nist256p1.sign(self, secret_key: bytes, message: bytes) -> bytes
```
2016-05-05 13:44:47 -07:00
Uses secret key to produce the signature of message.
``` python
def trezor.crypto.curve.nist256p1.verify(self, public_key: bytes, signature: bytes, message: bytes) -> bool
```
2016-05-05 13:44:47 -07:00
Uses public key to verify the signature of the message
Returns True on success.
2016-05-05 13:12:26 -07:00
####trezor.crypto.curve.secp256k1
``` python
def trezor.crypto.curve.secp256k1.publickey(self, secret_key: bytes, compressed: bool=True) -> bytes
```
2016-05-05 13:44:47 -07:00
Computes public key from secret key.
``` python
def trezor.crypto.curve.secp256k1.sign(self, secret_key: bytes, message: bytes) -> bytes
```
2016-05-05 13:44:47 -07:00
Uses secret key to produce the signature of message.
``` python
def trezor.crypto.curve.secp256k1.verify(self, public_key: bytes, signature: bytes, message: bytes) -> bool
```
2016-02-01 02:52:57 -08:00
2016-05-05 13:44:47 -07:00
Uses public key to verify the signature of the message
Returns True on success.
###trezor.crypto.hashlib
2016-02-01 02:52:57 -08:00
2016-05-05 13:12:26 -07:00
####trezor.crypto.hashlib.ripemd160
2016-02-01 06:16:33 -08:00
``` python
def trezor.crypto.hashlib.ripemd160(self, data: bytes=None) -> Ripemd160
```
2016-05-05 13:44:47 -07:00
Creates a hash context object.
``` python
def Ripemd160.update(self, data: bytes) -> None
```
2016-05-05 13:44:47 -07:00
Update the hash context with hashed data.
``` python
def Ripemd160.digest(self) -> bytes
```
2016-02-01 02:52:57 -08:00
2016-05-05 13:44:47 -07:00
Returns the digest of hashed data.
2016-05-05 13:12:26 -07:00
####trezor.crypto.hashlib.sha256
``` python
def trezor.crypto.hashlib.sha256(self, data: bytes=None) -> Sha256
```
2016-05-05 13:44:47 -07:00
Creates a hash context object.
``` python
def Sha256.update(self, data: bytes) -> None
```
2016-05-05 13:44:47 -07:00
Update the hash context with hashed data.
``` python
def Sha256.digest(self) -> bytes
```
2016-02-01 02:52:57 -08:00
2016-05-05 13:44:47 -07:00
Returns the digest of hashed data.
2016-05-05 13:12:26 -07:00
####trezor.crypto.hashlib.sha512
``` python
def trezor.crypto.hashlib.sha512(self, data: bytes=None) -> Sha512
```
2016-05-05 13:44:47 -07:00
Creates a hash context object.
``` python
def Sha512.hash(self, data: bytes) -> None
```
2016-05-05 13:44:47 -07:00
Update the hash context with hashed data.
``` python
def Sha512.digest(self) -> bytes
```
2016-02-01 08:48:26 -08:00
2016-05-05 13:44:47 -07:00
Returns the digest of hashed data.
2016-05-05 13:12:26 -07:00
####trezor.crypto.hashlib.sha3_256
``` python
def trezor.crypto.hashlib.sha3_256(self, data: bytes=None) -> Sha3_256
```
2016-05-05 13:44:47 -07:00
Creates a hash context object.
``` python
def Sha3_256.update(self, data: bytes) -> None
```
2016-05-05 13:44:47 -07:00
Update the hash context with hashed data.
``` python
def Sha3_256.digest(self) -> bytes
```
2016-02-01 08:48:26 -08:00
2016-05-05 13:44:47 -07:00
Returns the digest of hashed data.
2016-05-05 13:12:26 -07:00
####trezor.crypto.hashlib.sha3_512
``` python
def trezor.crypto.hashlib.sha3_512(self, data: bytes=None) -> Sha3_512
```
2016-05-05 13:44:47 -07:00
Creates a hash context object.
``` python
def Sha3_512.update(self, data: bytes) -> None
```
2016-05-05 13:44:47 -07:00
Update the hash context with hashed data.
``` python
def Sha3_512.digest(self) -> bytes
```
2016-02-01 08:48:26 -08:00
2016-05-05 13:44:47 -07:00
Returns the digest of hashed data.
###trezor.crypto.hmac
2016-04-03 16:46:46 -07:00
``` python
def trezor.crypto.hmac.new(key, msg, digestmod) -> Hmac
```
2016-02-01 08:48:26 -08:00
##trezor.msg
2016-02-01 08:48:26 -08:00
``` python
def trezor.msg.send(self, message) -> int
```
2016-05-05 13:44:47 -07:00
Sends message using USB HID (device) or UDP (emulator).
``` python
def trezor.msg.select(self, timeout_us: int) -> tuple
2016-02-01 08:48:26 -08:00
```
2016-05-05 13:44:47 -07:00
Polls the event queue and returns the event object.
Function returns None if timeout specified in microseconds is reached.
##trezor.ui
2016-02-01 08:48:26 -08:00
``` python
def trezor.ui.rgbcolor(r: int, g: int, b: int) -> int
```
``` python
def trezor.ui.lerpi(a: int, b: int, t: float) -> int
```
``` python
def trezor.ui.blend(ca: int, cb: int, t: float) -> int
```
``` python
def trezor.ui.animate_pulse(func, ca, cb, speed=200000, delay=30000)
```
2016-02-01 08:48:26 -08:00
###trezor.ui.display
2016-02-01 08:18:04 -08:00
``` python
def trezor.ui.display.bar(self, x: int, y: int, w: int, h: int, fgcolor: int, bgcolor: int=None) -> None
```
2016-05-05 13:44:47 -07:00
Renders a bar at position (x,y = upper left corner) with width w and height h of color fgcolor.
When a bgcolor is set, the bar is drawn with rounded corners and bgcolor is used for background.
``` python
def trezor.ui.display.blit(self, x: int, y: int, w: int, h: int, data: bytes) -> None
```
2016-05-05 13:44:47 -07:00
Renders rectangle at position (x,y = upper left corner) with width w and height h with data.
The data needs to have the correct format.
``` python
def trezor.ui.display.image(self, x: int, y: int, image: bytes) -> None
```
2016-05-05 13:44:47 -07:00
Renders an image at position (x,y).
The image needs to be in TREZOR Optimized Image Format (TOIF) - full-color mode.
``` python
def trezor.ui.display.icon(self, x: int, y: int, icon: bytes, fgcolor: int, bgcolor: int) -> None
```
2016-05-05 13:44:47 -07:00
Renders an icon at position (x,y), fgcolor is used as foreground color, bgcolor as background.
The image needs to be in TREZOR Optimized Image Format (TOIF) - gray-scale mode.
``` python
def trezor.ui.display.text(self, x: int, y: int, text: bytes, font: int, fgcolor: int, bgcolor: int) -> None
```
2016-05-05 13:44:47 -07:00
Renders left-aligned text at position (x,y) where x is left position and y is baseline.
Font font is used for rendering, fgcolor is used as foreground color, bgcolor as background.
``` python
def trezor.ui.display.text_center(self, x: int, y: int, text: bytes, font: int, fgcolor: int, bgcolor: int) -> None
```
2016-05-05 13:44:47 -07:00
Renders text centered at position (x,y) where x is text center and y is baseline.
Font font is used for rendering, fgcolor is used as foreground color, bgcolor as background.
``` python
def trezor.ui.display.text_right(self, x: int, y: int, text: bytes, font: int, fgcolor: int, bgcolor: int) -> None
```
2016-05-05 13:44:47 -07:00
Renders right-aligned text at position (x,y) where x is right position and y is baseline.
Font font is used for rendering, fgcolor is used as foreground color, bgcolor as background.
``` python
def trezor.ui.display.text_width(self, text: bytes, font: int) -> int
```
2016-05-05 13:44:47 -07:00
Returns a width of text in pixels. Font font is used for rendering.
``` python
def trezor.ui.display.qrcode(self, x: int, y: int, data: bytes, scale: int) -> None
```
2016-05-05 13:44:47 -07:00
Renders data encoded as a QR code at position (x,y).
Scale determines a zoom factor.
``` python
def trezor.ui.display.loader(self, progress: int, fgcolor: int, bgcolor: int, icon: bytes=None, iconfgcolor: int=None) -> None
```
2016-05-05 13:44:47 -07:00
Renders a rotating loader graphic.
Progress determines its position (0-1000), fgcolor is used as foreground color, bgcolor as background.
When icon and iconfgcolor are provided, an icon is drawn in the middle using the color specified in iconfgcolor.
Icon needs to be of exaclty 96x96 pixels size.
``` python
def trezor.ui.display.orientation(self, degrees: int) -> None
```
2016-05-05 13:44:47 -07:00
Sets display orientation to 0, 90, 180 or 270 degrees.
Everything needs to be redrawn again when this function is used.
``` python
def trezor.ui.display.backlight(self, val: int) -> None
```
Sets backlight intensity to the value specified in val.
``` python
def trezor.ui.display.raw(self, reg: int, data: bytes) -> None
```
2016-05-05 13:44:47 -07:00
Performs a raw command on the display. Read the datasheet to learn more.
###trezor.utils
``` python
2016-05-05 13:44:47 -07:00
def trezor.utils.memaccess(self, address: int, length: int) -> bytes
2016-02-01 02:52:57 -08:00
```
2016-05-05 13:44:47 -07:00
Creates a bytes object that can be used to access certain memory location.