forked from fibercrypto/libfibercrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cgo] refs fibercrypto#5 Added
coin.mocks.SecKey
- Loading branch information
Maykel Arias Torres
committed
Mar 24, 2020
1 parent
3055c3d
commit 425b1cf
Showing
4 changed files
with
72 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package main | ||
|
||
import "reflect" | ||
|
||
/* | ||
#include <string.h> | ||
#include <stdlib.h> | ||
#include "fctypes.h" | ||
*/ | ||
import "C" | ||
|
||
//export FC_mocks_SecKey_Bytes | ||
func FC_mocks_SecKey_Bytes(__m *C.SecKeyMocks__Handle, _arg0 *C.GoSlice_) (____error_code uint32) { | ||
_m, ok_m := lookupSecKeyMocksHandle(*__m) | ||
if !ok_m { | ||
____error_code = FC_BAD_HANDLE | ||
return | ||
} | ||
__arg0 := _m.Bytes() | ||
copyToGoSlice(reflect.ValueOf(__arg0), _arg0) | ||
return | ||
} | ||
|
||
//export FC_mocks_SecKey_Null | ||
func FC_mocks_SecKey_Null(__m *C.SecKeyMocks__Handle, _arg0 *bool) (____error_code uint32) { | ||
_m, ok_m := lookupSecKeyMocksHandle(*__m) | ||
if !ok_m { | ||
____error_code = FC_BAD_HANDLE | ||
return | ||
} | ||
__arg0 := _m.Null() | ||
*_arg0 = __arg0 | ||
return | ||
} | ||
|
||
//export FC_mocks_SecKey_Verify | ||
func FC_mocks_SecKey_Verify(__m *C.SecKeyMocks__Handle) (____error_code uint32) { | ||
_m, ok_m := lookupSecKeyMocksHandle(*__m) | ||
if !ok_m { | ||
____error_code = FC_BAD_HANDLE | ||
return | ||
} | ||
____return_err := _m.Verify() | ||
____error_code = libErrorCode(____return_err) | ||
if ____return_err == nil { | ||
} | ||
return | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters