mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 00:46:17 +08:00
21 lines
358 B
Go
21 lines
358 B
Go
/* +build cgo */
|
|
package gmssl
|
|
|
|
/*
|
|
#include <openssl/x509.h>
|
|
#include <openssl/pem.h>
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func GetAttributesFromCertificate(cert string) (map[string]string, error) {
|
|
return nil, errors.New("Not implemented")
|
|
}
|
|
|
|
func GetPublicKeyFromCertificate(cert string) (*PublicKey, error) {
|
|
return nil, errors.New("Not implemented")
|
|
}
|