Lines Matching refs:nn

33 namespace nn {
84 nn::Result InitializeGeneralSession();
85nn::Result NewClient( s32 socket, u32 verifyOpt, const char8 pServerPath[], size_t serverPathSize,…
86 nn::Result CreateCertStore( CertStoreId* pCertId );
87 nn::Result DestroyCertStore( CertStoreId certId );
88nn::Result AddCertToCertStore( CertStoreId certStoreId, const u8 pCertData[], size_t certDataSize,…
89nn::Result AddInternalCertToCertStore( CertStoreId certStoreId, InternalCaCert internalCertName, C…
90 nn::Result RemoveCertFromCertStore( CertStoreId certStoreId, CertId certId );
91 nn::Result CreateCrlStore( CrlStoreId* pCrlId );
92 nn::Result DestroyCrlStore( CrlStoreId crlId );
93nn::Result AddCrlToCrlStore( CrlStoreId crlStoreId, const u8 pCrlData[], size_t crlDataSize, CrlId…
94nn::Result AddInternalCrlToCrlStore( CrlStoreId crlStoreId, InternalCrl internalCrlName, CrlId* pC…
95 nn::Result RemoveCrlFromCrlStore( CrlStoreId crlStoreId, CrlId crlId );
96nn::Result CreateClientCert( const u8 pCertData[], size_t certDataSize, const u8 pPrivateKeyData[]…
97nn::Result CreateInternalClientCert( InternalClientCert internalClientName, CertId* pCertId );
98 nn::Result DestroyClientCert( CertId ClientCert );
99 nn::Result GatherRandomEntropy();
100 nn::Result GenerateRandomBytes( u8 pRandomBuf[], size_t randomBufSize );
101 nn::Result InitializeConnectionSession( ConnectionHandle handle );
102 nn::Result DoHandshake( ConnectionHandle handle );
103nn::Result DoHandshakeWithGetServerCertInfo( ConnectionHandle handle, size_t* pServerCertSizeCouri…
104nn::Result Read( ConnectionHandle handle, u8 pDataBuf[], size_t dataBufSize, size_t* pReadSizeCour…
105nn::Result Peek( ConnectionHandle handle, u8 pDataBuf[], size_t dataBufSize, size_t* pReadSizeCour…
106nn::Result Write( ConnectionHandle handle, const u8 pDataBuf[], size_t dataBufSize, size_t* pWritt…
107 nn::Result SetServerCertStore( ConnectionHandle handle, CertStoreId certStoreId );
108 nn::Result SetClientCert( ConnectionHandle handle, CertId certId );
109 nn::Result SetCrlStore( ConnectionHandle handle, CrlStoreId certStoreId );
110 nn::Result DisableVerifyOptionForDebug( ConnectionHandle handle, u32 excludeVerifyOptions );
111nn::Result GetCipherInfo( ConnectionHandle handle, char8 pVersionBuf[], size_t versionBufSize, cha…
112 nn::Result GetCertVerifyErrors( ConnectionHandle handle, u32* pCertVerifyErrorsCourier );
113 nn::Result Shutdown( ConnectionHandle handle );
114nn::Result SetServerCertBuffer( ConnectionHandle handle, nn::Handle hCertBufSharedMemory, size_t c…
115nn::Result AddEVPolicyId( ConnectionHandle handle, const char8 pPolicyId[], size_t policyIdSize );