Method | Description | |
---|---|---|
BIO ( byte buf ) : System |
Calls BIO_new(BIO_s_mem()) and then BIO_write() the buf
|
|
BIO ( string str ) : System |
Calls BIO_new(BIO_s_mem()) and then BIO_write() the str
|
|
File ( string filename, string mode ) : |
Factory method that calls BIO_new_file()
|
|
GetMessageDigestContext ( ) : OpenSSL.Crypto.MessageDigestContext |
Returns the MessageDigestContext if this BIO's type if BIO_f_md()
|
|
MemoryBuffer ( ) : |
Factory method that calls BIO_new() with BIO_s_mem()
|
|
MemoryBuffer ( bool takeOwnership ) : |
Calls BIO_new(BIO_s_mem())
|
|
MessageDigest ( OpenSSL.Crypto.MessageDigest md ) : |
Factory method that calls BIO_new() with BIO_f_md()
|
|
Push ( BIO bio ) : void |
Calls BIO_push()
|
|
ReadBytes ( int count ) : ArraySegment |
Calls BIO_read()
|
|
ReadString ( ) : string |
Calls BIO_gets()
|
|
SetClose ( CloseOption opt ) : void |
Calls BIO_set_close()
|
|
Write ( byte buf ) : void |
Calls BIO_write()
|
|
Write ( byte buf, int len ) : void |
Calls BIO_write()
|
|
Write ( string str ) : void |
Calls BIO_puts()
|
|
Write ( uint value ) : void |
Calls BIO_write()
|
|
Write ( ushort value ) : void |
Calls BIO_write()
|
Method | Description | |
---|---|---|
OnDispose ( ) : void |
Calls BIO_free()
|
Method | Description | |
---|---|---|
BIO ( |
public static File ( string filename, string mode ) : |
||
filename | string | |
mode | string | |
return |
public GetMessageDigestContext ( ) : OpenSSL.Crypto.MessageDigestContext | ||
return | OpenSSL.Crypto.MessageDigestContext |
public static MemoryBuffer ( bool takeOwnership ) : |
||
takeOwnership | bool | |
return |
public static MessageDigest ( OpenSSL.Crypto.MessageDigest md ) : |
||
md | OpenSSL.Crypto.MessageDigest | |
return |
public ReadBytes ( int count ) : ArraySegment |
||
count | int | |
return | ArraySegment |