uOFW
Reverse engineered PSP kernel 6.60.
Loading...
Searching...
No Matches
lib_ssl.h
1/* Copyright (C) 2011 - 2016 The uOFW team
2 See the file COPYING for copying permission.
3*/
4
11#ifndef LIB_SSL_H
12#define LIB_SSL_H
13
14#define SCE_SSL_LEAST_STACK_SIZE (1*1024) /* 1KiB */
15
16/* lib_ssl specific error codes. */
17
18#define SCE_SSL_ERROR_BEFORE_INIT 0x80435001
19#define SCE_SSL_ERROR_ALREADY_INITED 0x80435020
20#define SCE_SSL_ERROR_OUT_OF_MEMORY 0x80435022
21#define SCE_SSL_ERROR_NOT_FOUND 0x80435025
22#define SCE_SSL_ERROR_INVALID_VALUE 0x804351FE
23#define SCE_SSL_ERROR_INVALID_FORMAT 0x80435108
24
25#endif /* LIB_SSL_H */
26