summaryrefslogtreecommitdiffstats
path: root/b32e.asm
blob: af02dc3dc90477ae35feb8d04c1394435271595c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
section .data

rfc4648 db 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'

section .bss

input_buffer resb 8
output_buffer resb 8

section .text
global _start

; read_input
; reads 5 bytes (40 bits) of input
; uses reg: rax, rdi, rsi, rdx
; uses mem: input_buffer
read_input:
    ; linux x64 read(stdin, input_buffer, 5)
    mov rax, 0
    mov rdi, 0
    mov rsi, input_buffer
    mov rdx, 5
    syscall
    ret

; write_output
; writes the output buffer to stdout
; uses reg: rax, rdi, rsi, rdx
; uses mem: output_buffer(ro)
write_output:
    ; linux x64 write(stdout, output_buffer, 8)
    mov rax, 1
    mov rdi, 1
    mov rsi, output_buffer
    mov rdx, 5
    syscall
    ret

; b32e
; encodes 40 bits (5 bytes) to 8 RFC4648 base32 characters
; uses reg: rbx, rdx, r11
; uses mem: input_buffer, output_buffer
b32e:
    ; set up output counter
    xor r11, r11

.loop:
    ; clear rbx
    xor rbx, rbx

    ; get a byte from the input
    mov bl, byte [input_buffer]

    ; mask and shift to get 5 bits which is a number in 0 ~ 31
    and bl, 0xf8
    shr bl, 3

    ; rshift the input buffer
    shr qword [input_buffer], 5

    ; convert to base32
    add rbx, rfc4648
    mov dl, byte [rbx]
    mov [output_buffer + r11], dl 

    ; increase counter
    inc r11

    ; check counter
    ; when the counter reaches 8 it means that 8 characters (40 bits)
    ; have been processed and written
    cmp r11, 8
    js .loop 

    ret


_start:
    nop

.loop:
    ; try to read 5 bytes
    call read_input
    ; read nothing
    cmp rax, 0
    je .exit

    ; convert to base 32
    call b32e
    ; print
    call write_output
    jmp .loop

.exit:
    ; linux x64 exit(0)
    mov rax, 60
    mov rdi, 0
    syscall