2017-02-01 12:52:09 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-02-01 17:14:52 +00:00
|
|
|
#include "libp2p/crypto/key.h"
|
2017-02-02 19:10:12 +00:00
|
|
|
#include "libp2p/crypto/rsa.h"
|
2017-03-19 12:42:52 +00:00
|
|
|
#include "libp2p/conn/session.h"
|
2017-07-31 21:36:08 +00:00
|
|
|
#include "libp2p/peer/peerstore.h"
|
2017-08-09 13:03:40 +00:00
|
|
|
#include "libp2p/net/protocol.h"
|
2017-02-01 17:14:52 +00:00
|
|
|
|
2017-02-01 12:52:09 +00:00
|
|
|
/**
|
2017-03-19 12:42:52 +00:00
|
|
|
* Handling of a secure connection
|
2017-02-01 12:52:09 +00:00
|
|
|
*/
|
|
|
|
|
2017-10-23 20:21:50 +00:00
|
|
|
struct SecioContext {
|
|
|
|
struct Stream* stream;
|
|
|
|
struct SessionContext* session_context;
|
|
|
|
struct RsaPrivateKey* private_key;
|
|
|
|
struct Peerstore* peer_store;
|
|
|
|
};
|
2017-02-02 19:10:12 +00:00
|
|
|
|
2017-08-09 13:03:40 +00:00
|
|
|
struct Libp2pProtocolHandler* libp2p_secio_build_protocol_handler(struct RsaPrivateKey* private_key, struct Peerstore* peer_store);
|
|
|
|
|
2017-02-02 19:10:12 +00:00
|
|
|
/***
|
2017-10-23 23:03:38 +00:00
|
|
|
* Initiates a secio handshake. Use this method when you want to initiate a secio
|
|
|
|
* session. This should not be used to respond to incoming secio requests
|
|
|
|
* @param parent_stream the parent stream
|
2017-10-25 17:28:53 +00:00
|
|
|
* @param remote_peer the remote peer
|
|
|
|
* @param peerstore the peerstore
|
|
|
|
* @param rsa_private_key the local private key
|
2017-10-23 23:03:38 +00:00
|
|
|
* @returns a Secio Stream
|
2017-02-02 19:10:12 +00:00
|
|
|
*/
|
2017-10-25 17:28:53 +00:00
|
|
|
struct Stream* libp2p_secio_stream_new(struct Stream* parent_stream, struct Libp2pPeer* remote_peer, struct Peerstore* peerstore, struct RsaPrivateKey* rsa_private_key);
|
2017-08-09 15:57:17 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
* Initiates a secio handshake. Use this method when you want to initiate a secio
|
|
|
|
* session. This should not be used to respond to incoming secio requests
|
2017-10-23 20:21:50 +00:00
|
|
|
* @param ctx the SecioContext
|
2017-08-09 15:57:17 +00:00
|
|
|
* @returns true(1) on success, false(0) otherwise
|
|
|
|
*/
|
2017-10-23 20:21:50 +00:00
|
|
|
int libp2p_secio_initiate_handshake(struct SecioContext* ctx);
|
2017-08-31 21:40:35 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
* Send the protocol string to the remote stream
|
|
|
|
* @param session the context
|
|
|
|
* @returns true(1) on success, false(0) otherwise
|
|
|
|
*/
|
2017-10-23 20:21:50 +00:00
|
|
|
int libp2p_secio_send_protocol(struct SecioContext* session);
|
2017-08-31 21:40:35 +00:00
|
|
|
/***
|
|
|
|
* Attempt to read the secio protocol as a reply from the remote
|
|
|
|
* @param session the context
|
|
|
|
* @returns true(1) if we received what we think we should have, false(0) otherwise
|
|
|
|
*/
|
2017-10-23 20:21:50 +00:00
|
|
|
int libp2p_secio_receive_protocol(struct SecioContext* session);
|
2017-10-23 23:03:38 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
* performs initial communication over an insecure channel to share
|
|
|
|
* keys, IDs, and initiate connection. This is a framed messaging system
|
|
|
|
* NOTE: session must contain a valid socket_descriptor that is a multistream.
|
|
|
|
* @param local_session the secure session to be filled
|
|
|
|
* @param private_key our private key to use
|
|
|
|
* @param peerstore the collection of peers
|
|
|
|
* @returns true(1) on success, false(0) otherwise
|
|
|
|
*/
|
|
|
|
int libp2p_secio_handshake(struct SecioContext* secio_context);
|
|
|
|
|