身份证识别 -奇异果体育app竞彩官网下载
接口描述
支持对二代居民身份证正反面所有8个字段进行结构化识别,包括姓名、性别、民族、出生日期、住址、身份证号、签发机关、有效期限,识别准确率超过99%;同时支持身份证正面头像检测,并返回头像切片的base64编码及位置信息。
同时,支持对用户上传的身份证图片进行图像质量和风险检测,是否存在正反颠倒、模糊、欠曝、过曝等质量问题,可识别图片是否为复印件或临时身份证,是否被翻拍或编辑,是否存在四角不完整、头像或关键字段被遮挡。
增值能力 | 详情 |
---|---|
裁剪能力 | 头像检测与切片:返回头像切片的base64编码及位置信息 |
身份证检测与切片:返回身份证的base64编码及位置信息(去掉证件外围多余背景、自动矫正拍摄角度) | |
质量检测 | 身份证图片模糊检测 |
身份证关键字段反光或过曝光 | |
身份证图片较暗或欠曝光 | |
身份证边框/四角不完整告警 | |
身份证头像或关键字段被遮挡/马赛克告警 | |
风险检测 | 身份证复印件告警 |
临时身份证告警 | |
身份证翻拍告警 | |
身份证ps编辑告警 | |
身份证证号不合法告警 | |
身份证证号和出生日期、性别信息不一致告警 |
视频教程请参见
在线调试
您可以在 中调试该接口,可进行签名验证、查看在线调用的请求内容和返回结果、示例代码的自动生成。
请求说明
请求示例
http 方法:post
请求url: https://aip.baidubce.com/rest/2.0/ocr/v1/idcard
url参数:
参数 | 值 |
---|---|
access_token | 通过api key和secret key获取的access_token,参考“” |
header如下:
参数 | 值 |
---|---|
content-type | application/x-www-form-urlencoded |
body中放置请求参数,参数详情如下:
请求参数
参数 | 是否必选 | 类型 | 可选值范围 | 说明 |
---|---|---|---|---|
image | 和url二选一 | string | - | 图像数据,base64编码后进行urlencode,要求base64编码和urlencode后大小不超过4m,最短边至少15px,最长边最大4096px,支持jpg/jpeg/png/bmp格式 |
url | 和image二选一 | string | - | 图片完整url,url长度不超过1024字节,url对应的图片base64编码后大小不超过4m,最短边至少15px,最长边最大4096px,支持jpg/jpeg/png/bmp格式,当image字段存在时url字段失效 请注意关闭url防盗链 |
id_card_side | 是 | string | front/back | -front:身份证含照片的一面 -back:身份证带国徽的一面 自动检测身份证正反面,如果传参指定方向与图片相反,支持正常识别,返回参数image_status字段为"reversed_side" |
detect_risk | 否 | string | true/false | 是否开启身份证风险类型(身份证复印件、临时身份证、身份证翻拍、修改过的身份证)检测功能,默认不开启,即:false。 - true:开启,请查看返回参数risk_type; - false:不开启 |
detect_quality | 否 | string | true/false | 是否开启身份证质量类型(边框/四角不完整、头像或关键字段被遮挡/马赛克)检测功能,默认不开启,即:false。 - true:开启,请查看返回参数card_quality; - false:不开启 |
detect_photo | 否 | string | true/false | 是否检测头像内容,默认不检测。可选值:true-检测头像并返回头像的 base64 编码及位置信息 |
detect_card | 否 | string | true/false | 是否检测身份证进行裁剪,默认不检测。可选值:true-检测身份证并返回证照的 base64 编码及位置信息 |
detect_direction | 否 | string | true/false | 是否检测上传的身份证图片方向,默认不检测。可选值: -true:检测 - false:不检测 |
请求代码示例
提示一:使用示例代码前,请记得替换其中的示例token、图片地址或base64信息。
提示二:部分语言依赖的类或库,请在代码注释中查看下载地址。
curl -i -k 'https://aip.baidubce.com/rest/2.0/ocr/v1/idcard?access_token=【调用鉴权接口获取的token】' --data 'id_card_side=front&image=【图片base64编码,需urlencode】' -h 'content-type:application/x-www-form-urlencoded'
# encoding:utf-8
import requests
import base64
'''
身份证识别
'''
request_url = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard"
# 二进制方式打开图片文件
f = open('[本地文件]', 'rb')
img = base64.b64encode(f.read())
params = {"id_card_side":"front","image":img}
access_token = '[调用鉴权接口获取的token]'
request_url = request_url "?access_token=" access_token
headers = {'content-type': 'application/x-www-form-urlencoded'}
response = requests.post(request_url, data=params, headers=headers)
if response:
print (response.json())
package com.baidu.ai.aip;
import com.baidu.ai.aip.utils.base64util;
import com.baidu.ai.aip.utils.fileutil;
import com.baidu.ai.aip.utils.httputil;
import java.net.urlencoder;
/**
* 身份证识别
*/
public class idcard {
/**
* 重要提示代码中所需工具类
* fileutil,base64util,httputil,gsonutils请从
* https://ai.baidu.com/file/658a35abab2d404fbf903f64d47c1f72
* https://ai.baidu.com/file/c8d81f3301e24d2892968f09ae1ad6e2
* https://ai.baidu.com/file/544d677f5d4e4f17b4122fbd60db82b3
* https://ai.baidu.com/file/470b3acca3fe43788b5a963bf0b625f3
* 下载
*/
public static string idcard() {
// 请求url
string url = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard";
try {
// 本地文件路径
string filepath = "[本地文件路径]";
byte[] imgdata = fileutil.readfilebybytes(filepath);
string imgstr = base64util.encode(imgdata);
string imgparam = urlencoder.encode(imgstr, "utf-8");
string param = "id_card_side=" "front" "&image=" imgparam;
// 注意这里仅为了简化编码每一次请求都去获取access_token,线上环境access_token有过期时间, 客户端可自行缓存,过期后重新获取。
string accesstoken = "[调用鉴权接口获取的token]";
string result = httputil.post(url, accesstoken, param);
system.out.println(result);
return result;
} catch (exception e) {
e.printstacktrace();
}
return null;
}
public static void main(string[] args) {
idcard.idcard();
}
}
#include
#include
// libcurl库下载链接:https://curl.haxx.se/download.html
// jsoncpp库下载链接:https://github.com/open-source-parsers/jsoncpp/
const static std::string request_url = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard";
static std::string idcard_result;
/**
* curl发送http请求调用的回调函数,回调函数中对返回的json格式的body进行了解析,解析结果储存在全局的静态变量当中
* @param 参数定义见libcurl文档
* @return 返回值定义见libcurl文档
*/
static size_t callback(void *ptr, size_t size, size_t nmemb, void *stream) {
// 获取到的body存放在ptr中,先将其转换为string格式
idcard_result = std::string((char *) ptr, size * nmemb);
return size * nmemb;
}
/**
* 身份证识别
* @return 调用成功返回0,发生错误返回其他错误码
*/
int idcard(std::string &json_result, const std::string &access_token) {
std::string url = request_url "?access_token=" access_token;
curl *curl = null;
curlcode result_code;
int is_success;
curl = curl_easy_init();
if (curl) {
curl_easy_setopt(curl, curlopt_url, url.data());
curl_easy_setopt(curl, curlopt_post, 1);
curl_httppost *post = null;
curl_httppost *last = null;
curl_formadd(&post, &last, curlform_copyname, "id_card_side", curlform_copycontents, "front", curlform_end);
curl_formadd(&post, &last, curlform_copyname, "image", curlform_copycontents, "【base64_img】", curlform_end);
curl_easy_setopt(curl, curlopt_httppost, post);
curl_easy_setopt(curl, curlopt_writefunction, callback);
result_code = curl_easy_perform(curl);
if (result_code != curle_ok) {
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(result_code));
is_success = 1;
return is_success;
}
json_result = idcard_result;
curl_easy_cleanup(curl);
is_success = 0;
} else {
fprintf(stderr, "curl_easy_init() failed.");
is_success = 1;
}
return is_success;
}
/**
* 发起http post请求(rest api), 并获取rest请求的结果
* @param string $url
* @param string $param
* @return - http response body if succeeds, else false.
*/
function request_post($url = '', $param = '')
{
if (empty($url) || empty($param)) {
return false;
}
$posturl = $url;
$curlpost = $param;
// 初始化curl
$curl = curl_init();
curl_setopt($curl, curlopt_url, $posturl);
curl_setopt($curl, curlopt_header, 0);
// 要求结果为字符串且输出到屏幕上
curl_setopt($curl, curlopt_returntransfer, 1);
curl_setopt($curl, curlopt_ssl_verifypeer, false);
// post提交方式
curl_setopt($curl, curlopt_post, 1);
curl_setopt($curl, curlopt_postfields, $curlpost);
// 运行curl
$data = curl_exec($curl);
curl_close($curl);
return $data;
}
$token = '[调用鉴权接口获取的token]';
$url = 'https://aip.baidubce.com/rest/2.0/ocr/v1/idcard?access_token=' . $token;
$img = file_get_contents('[本地文件路径]');
$img = base64_encode($img);
$bodys = array(
'id_card_side' => "front",
'image' => $img
);
$res = request_post($url, $bodys);
var_dump($res);
using system;
using system.io;
using system.net;
using system.text;
using system.web;
namespace com.baidu.ai
{
public class idcard
{
// 身份证识别
public static string idcard()
{
string token = "[调用鉴权接口获取的token]";
string host = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard?access_token=" token;
encoding encoding = encoding.default;
httpwebrequest request = (httpwebrequest)webrequest.create(host);
request.method = "post";
request.keepalive = true;
// 图片的base64编码
string base64 = getfilebase64("[本地图片文件]");
string str = "id_card_side=" "front" "&image=" httputility.urlencode(base64);
byte[] buffer = encoding.getbytes(str);
request.contentlength = buffer.length;
request.getrequeststream().write(buffer, 0, buffer.length);
httpwebresponse response = (httpwebresponse)request.getresponse();
streamreader reader = new streamreader(response.getresponsestream(), encoding.default);
string result = reader.readtoend();
console.writeline("身份证识别:");
console.writeline(result);
return result;
}
public static string getfilebase64(string filename) {
filestream filestream = new filestream(filename, filemode.open);
byte[] arr = new byte[filestream.length];
filestream.read(arr, 0, (int)filestream.length);
string baser64 = convert.tobase64string(arr);
filestream.close();
return baser64;
}
}
}
返回说明
返回参数
字段 | 是否必选 | 类型 | 说明 |
---|---|---|---|
log_id | 是 | uint64 | 唯一的log id,用于问题定位 |
words_result | 是 | array[] | 定位和识别结果数组 |
words_result_num | 是 | uint32 | 识别结果数,表示words_result的元素个数 |
direction | 否 | int32 | 图像方向,输入参数 detect_direction= true 时返回。 - - 1:未定义, - 0:正向, - 1:逆时针90度, - 2:逆时针180度, - 3:逆时针270度 |
image_status | 是 | string | normal-识别正常 reversed_side-身份证正反面颠倒 non_idcard-上传的图片中不包含身份证 blurred-身份证模糊 other_type_card-其他类型证照 over_exposure-身份证关键字段反光或过曝 over_dark-身份证欠曝(亮度过低) unknown-未知状态 |
risk_type | 否 | string | 输入参数 detect_risk = true 时,则返回该字段识别身份证风险类型: normal-正常身份证; copy-复印件; temporary-临时身份证; screen-翻拍; unknown-其他未知情况 |
edit_tool | 否 | string | 如果参数 detect_risk = true 时,则返回此字段。如果检测身份证被编辑过,该字段指定编辑软件名称,如:adobe photoshop cc 2014 (macintosh),如果没有被编辑过则返回值无此参数 |
card_quality | 否 | object | 输入参数 detect_quality = true 时,则返回该字段识别身份证质量类型: isclear - 是否清晰; iscomplete - 是否边框/四角完整; isnocover - 是否头像、关键字段无遮挡/马赛克。 及对应的概率:iscomplete_propobility、isclear_propobility、isnocover_propobility,值在0-1之间,值越大表示图像质量越好。 默认阈值(仅为推荐值,建议按照实际业务场景,基于图片返回的具体概率值,自定义设置判断阈值):当 isclear_propobility、iscomplete_propobility 超过0.5时,对应isclear、iscomplete 返回1,低于0.5,则返回0; 当 isnocover_propobility 超过0.3时,对应isnocover 返回1,低于0.3,则返回0 |
photo | 否 | string | 当请求参数 detect_photo = true时返回,头像切图的 base64 编码(无编码头,需自行处理) |
photo_location | 否 | object | 当请求参数 detect_photo = true时返回,头像的位置信息(坐标0点为左上角) |
card_image | 否 | string | 当请求参数 detect_card = true时返回,身份证裁剪切图的 base64 编码(无编码头,需自行处理) |
card_location | 否 | object | 当请求参数 detect_card = true时返回,身份证裁剪切图的位置信息(坐标0点为左上角) |
idcard_number_type | 是 | int | 用于校验身份证号码、性别、出生是否一致,输出结果及其对应关系如下: - 1: 身份证正面所有字段全为空 0: 身份证证号不合法,此情况下不返回身份证证号 1: 身份证证号和性别、出生信息一致 2: 身份证证号和性别、出生信息都不一致 3: 身份证证号和出生信息不一致 4: 身份证证号和性别信息不一致 |
location | 是 | array[] | 位置数组(坐标0点为左上角) |
left | 是 | uint32 | 表示定位位置的长方形左上顶点的水平坐标 |
top | 是 | uint32 | 表示定位位置的长方形左上顶点的垂直坐标 |
width | 是 | uint32 | 表示定位位置的长方形的宽度 |
height | 是 | uint32 | 表示定位位置的长方形的高度 |
words | 否 | string | 识别结果字符串 |
返回示例(身份证头像面)
{
"log_id": "1559208562721579319",
"direction": 0,
"image_status": "normal",
"photo": "/9j/4aaqskzjrgaba......",
"photo_location": {
"width": 1189,
"top": 638,
"left": 2248,
"height": 1483
},
"card_image": "/9j/4aaqskzjrgaba......",
"card_location": {
"top": 328,
"left": 275,
"width": 1329,
"height": 571
},
"words_result": {
"住址": {
"location": {
"left": 267,
"top": 453,
"width": 459,
"height": 99
},
"words": "南京市江宁区弘景大道3889号"
},
"公民身份号码": {
"location": {
"left": 443,
"top": 681,
"width": 589,
"height": 45
},
"words": "330881199904173914"
},
"出生": {
"location": {
"left": 270,
"top": 355,
"width": 357,
"height": 45
},
"words": "19990417"
},
"姓名": {
"location": {
"left": 267,
"top": 176,
"width": 152,
"height": 50
},
"words": "伍云龙"
},
"性别": {
"location": {
"left": 269,
"top": 262,
"width": 33,
"height": 52
},
"words": "男"
},
"民族": {
"location": {
"left": 492,
"top": 279,
"width": 30,
"height": 37
},
"words": "汉"
}
},
"words_result_num": 6
}
返回示例(身份证国徽面)
{
"words_result": {
"失效日期": {
"words": "20390711",
"location": {
"top": 445,
"left": 523,
"width": 153,
"height": 38
}
},
"签发机关": {
"words": "陆丰市公安局",
"location": {
"top": 377,
"left": 339,
"width": 195,
"height": 38
}
},
"签发日期": {
"words": "20190606",
"location": {
"top": 445,
"left": 343,
"width": 152,
"height": 38
}
}
},
"log_id": "1559208562721579328",
"words_result_num": 3,
"error_code": 0,
"image_status": "normal"
}
aes加密
您可以选择使用aes加密来请求本身份证识别接口,支持对身份证图片及识别结果进行加密后传输,示意图如下:
- 在百度云控制台「文字识别-应用列表-管理」中获取您的aes key
- 使用aes key对将要识别的图片进行加密
- 将加密后的图片传入接口,请求参数aesencry设置为true
- 接口返回加密后的识别结果,使用aes key进行解密,得到明文识别结果
使用aes加密不影响身份证识别接口支持的质量检测、风险检测等其他能力,也不影响识别效果。
请求说明
请求示例
http 方法:post
请求url: https://aip.baidubce.com/rest/2.0/ocr/v1/idcard
url参数:
参数 | 值 |
---|---|
access_token | 通过api key和secret key获取的access_token,参考“” |
header如下:
参数 | 值 |
---|---|
content-type | application/x-www-form-urlencoded |
body中放置请求参数,参数详情如下:
请求参数
参数 | 是否必选 | 类型 | 可选值范围 | 说明 |
---|---|---|---|---|
image | 是 | string | - | aes加密后的图像数据,请对加密图片进行base64编码,要求base64编码后大小不超过4m,最短边至少15px,最长边最大4096px,支持jpg/jpeg/png/bmp格式 |
aesencry | 是 | string | true/false | 使用aes加密请传true |
id_card_side | 是 | string | front/back | -front:身份证含照片的一面 -back:身份证带国徽的一面 自动检测身份证正反面,如果传参指定方向与图片相反,支持正常识别,返回参数image_status字段为"reversed_side" |
detect_direction | 否 | string | - | 此参数新版本无需传,支持自动检测图像旋转角度 |
detect_risk | 否 | string | true/false | 是否开启身份证风险类型(身份证复印件、临时身份证、身份证翻拍、修改过的身份证)功能,默认不开启,即:false。 - true:开启,请查看返回参数risk_type; - false:不开启 |
detect_photo | 否 | string | true/false | 是否检测头像内容,默认不检测。可选值:true-检测头像并返回头像的 base64 编码及位置信息 |
请求代码示例
提示一:使用示例代码前,请记得替换其中的示例token、图片地址或base64信息。
提示二:部分语言依赖的类或库,请在代码注释中查看下载地址。
# -*- coding: utf-8 -*-
#
from urllib import urlencode
import base64
from urllib import unquote
import requests
import json
from crypto.cipher import aes
import binascii
ak = "ak"
# 文字识别应用的api key
sk = "sk"
# 文字识别应用的secret key
aes = 'res'
# aes key 从控制台 文字识别-应用列表-应用管理 获取
class aescipher:
def __init__(self, key):
self.key = self.get_key(key)
def get_key(self, key):
st = bytearray()
for s in key:
st.append(int(s, 16))
str = st.decode('utf-8')
return str
def pad(self, text):
# 填充方法,加密内容必须为16字节的倍数
text_length = len(text)
amount_to_pad = aes.block_size - (text_length % aes.block_size)
if amount_to_pad == 0:
amount_to_pad = aes.block_size
pad = chr(amount_to_pad)
return text pad * amount_to_pad
def __unpad(self, text):
# 截取填充的字符
pad = ord(text[-1])
return text[:-pad]
# 加密函数
def encrypt(self, raw):
raw = self.pad(raw)
cipher = aes.new(self.key, aes.mode_ecb)
return base64.b64encode(cipher.encrypt(raw))
def decrypt(self, enc):
"""
解密方法
:param enc: base64编码的密文 str
:return: 解密后的明文 str
"""
cipher = aes.new(self.key, aes.mode_ecb)
return self.__unpad(cipher.decrypt(enc))
def get_accesstoken():
url = "https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id={ak}&client_secret={sk}".format(
ak=ak, sk=sk)
response = requests.get(url)
return response.json()['access_token']
encryptor = aescipher(aes)
token = get_accesstoken()
# 改成接口文档里的url
nameurl = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard"
url = nameurl "?access_token={token}".format(token=token)
print url
f = open('resources/my.jpg', 'rb')
d = f.read()
r_data = encryptor.encrypt(d)
# 构造请求数据格式
data = {}
data['image'] = r_data
data['id_card_side'] = 'front'
data['aesencry'] = 'true'
headers = {'content-type': 'application/x-www-form-urlencoded'}
res = requests.post(url=url, data=data, headers=headers)
#res= json.dumps(res.content, ensure_ascii=false)
data=json.loads(res.content)
result=encryptor.decrypt(base64.b64decode(data['result']))
print result
package aes;
import com.alibaba.fastjson.jsonobject;
import javax.crypto.cipher;
import javax.crypto.spec.secretkeyspec;
import java.net.urlencoder;
import java.util.base64;
public class idcard {
/**
* 重要提示代码中所需工具类
* fileutil,httputil请从
* https://ai.baidu.com/file/658a35abab2d404fbf903f64d47c1f72
* https://ai.baidu.com/file/544d677f5d4e4f17b4122fbd60db82b3
* 下载
*/
// 请求url
static string url = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard";
// aes key 从console控制台获取
static string aeskey = "[16位 aeskey]";
static byte[] originaeskey = null;
public static string idcard() {
try {
// 本地文件路径
string filepath = "[本地文件路径]";
byte[] imgdata = fileutil.readfilebybytes(filepath);
string imgstr = encryptimg(aeskey, imgdata);
string imgparam = urlencoder.encode(imgstr, "utf-8");
string param = "id_card_side=" "front"
"&image=" imgparam
"&aesencry=" true ;
string accesstoken = "[access token]";
string encryptresult = httputil.post(url, accesstoken, param);
string decryptresult = parseresult(encryptresult);
return decryptresult;
} catch (exception e) {
e.printstacktrace();
}
return null;
}
/**
* 加密图片
*
* @param aeskey
* @param imgdata
* @return
* @throws exception
*/
private static string encryptimg(string aeskey, byte[] imgdata) throws exception {
originaeskey = aeskeyutil.parseaeskey(aeskey);
byte[] encimgbytes = aesutil.encrypt(imgdata, originaeskey);
string imgstr = base64util.encodebase64(encimgbytes);
return imgstr;
}
/**
* 解密结果
*
* @param encryptresult
* @return
* @throws exception
*/
private static string parseresult(string encryptresult) throws exception {
jsonobject obj = jsonobject.parseobject(encryptresult);
string result = obj.getstring("result");
byte[] arr = base64util.decodebase64(result);
string decryptresult = new string(aesutil.decrypt(arr, originaeskey));
return decryptresult;
}
public static void main(string[] args) {
idcard.idcard();
}
static class aeskeyutil {
private static final string hex = "0123456789abcdef";
/**
* 获得原生的128位的aeskey
* 因为一个byte位8位最后生成的byte数组长度为16
*
* 16 * 8 = 128
*
* @param hex
* @return
*/
public static byte[] parseaeskey(string hex) throws exception {
char[] data = hex.tochararray();
if (data.length != 16) {
throw new exception(" ase key illegal ");
}
return decode(hex.tochararray());
}
private static byte[] decode(char[] data) throws illegalargumentexception {
int len = data.length;
byte[] out = new byte[len];
for (int i = 0; i < len; i) {
int f = todigit(data[i]);
out[i] = (byte) (f);
}
return out;
}
private static int todigit(char ch) {
return hex.indexof(ch);
}
}
static class aesutil {
private static final string algorithm = "aes";
private static final string algorithm_str = "aes/ecb/pkcs5padding";
/**
* aes 加密
*/
private static byte[] encrypt(byte[] src, byte[] aeskey) throws exception {
cipher cipher = getcipher(aeskey, cipher.encrypt_mode);
byte[] ret = cipher.dofinal(src);
return ret;
}
/**
* aes 解密
*/
public static byte[] decrypt(byte[] src, byte[] aeskey) throws exception {
cipher cipher = getcipher(aeskey, cipher.decrypt_mode);
byte[] original = cipher.dofinal(src);
return original;
}
private static cipher getcipher(byte[] aeskey, int mode) throws exception {
secretkeyspec secretkeyspec = new secretkeyspec(aeskey, algorithm);
cipher cipher = cipher.getinstance(algorithm_str);
cipher.init(mode, secretkeyspec);
return cipher;
}
}
static class base64util {
private static base64.encoder encoder = base64.getencoder();
// base64 加密
private static base64.decoder decoder = base64.getdecoder();
/**
* base64加密
*
* @param arr
* @return
*/
private static string encodebase64(byte[] arr) {
string base64 = null;
try {
base64 = encoder.encodetostring(arr);
} catch (exception e) {
}
return base64;
}
/**
* base64解密
*
* @param str
* @return
*/
public static byte[] decodebase64(string str) {
byte[] encodebase64 = new byte[0];
try {
encodebase64 = decoder.decode(str);
} catch (exception e) {
}
return encodebase64;
}
}
}
#include
#include
#include
#include
#include
#include "json/json.h"
#include "aip/base/base64.h"
#include "cryptopp/hex.h"
#include "openssl/aes.h"
#include
#include
#define key_size_16b 16
#define key_size_24b 24
#define key_size_32b 32
using cryptopp::hexencoder;
using cryptopp::hexdecoder;
using cryptopp::stringsource;
// libcurl库下载链接:https://curl.haxx.se/download.html
// jsoncpp库下载链接:https://github.com/open-source-parsers/jsoncpp/
//const static std::string request_url = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard";
//获取token
inline size_t onwritedata(void *buffer, size_t size, size_t nmemb, void *userp) {
std::string *str = dynamic_cast<std::string *>((std::string *) userp);
str->append((char *) buffer, size * nmemb);
return nmemb;
}
int get_token(
std::string ak,
std::string sk,
std::string *token) {
curl *curl = curl_easy_init();
struct curl_slist *slist = null;
std::map<std::string, std::string> params;
std::string response;
std::string error;
params["grant_type"] = "client_credentials";
params["client_id"] = ak;
params["client_secret"] = sk;
std::string url = "https://aip.baidubce.com/oauth/2.0/token?"
"grant_type=client_credentials&client_id=" ak "&client_secret=" sk;
curl_easy_setopt(curl, curlopt_url, url.c_str());
curl_easy_setopt(curl, curlopt_httpheader, slist);
curl_easy_setopt(curl, curlopt_writefunction, onwritedata);
curl_easy_setopt(curl, curlopt_writedata, &response);
curl_easy_setopt(curl, curlopt_nosignal, true);
curl_easy_setopt(curl, curlopt_connecttimeout_ms, 2000);
curl_easy_setopt(curl, curlopt_timeout_ms, 2000);
curl_easy_setopt(curl, curlopt_ssl_verifypeer, false);
curl_easy_setopt(curl, curlopt_ssl_verifyhost, false);
curl_easy_setopt(curl, curlopt_verbose, false);
int status_code = curl_easy_perform(curl);
curl_easy_cleanup(curl);
curl_slist_free_all(slist);
json::charreaderbuilder crbuilder;
std::unique_ptr<json::charreader> reader(crbuilder.newcharreader());
json::value obj;
reader->parse(response.data(), response.data() response.size(), &obj, &error);
*token = obj["access_token"].asstring();
return status_code;
}
std::string jsontostring(const json::value &root) {
static json::value def = []() {
json::value def;
json::streamwriterbuilder::setdefaults(&def);
def["emitutf8"] = true;
return def;
}();
std::ostringstream stream;
json::streamwriterbuilder stream_builder;
stream_builder.settings_ = def;//config emitutf8
std::unique_ptr<json::streamwriter> writer(stream_builder.newstreamwriter());
writer->write(root, &stream);
return stream.str();
}
int hex_char_value(char c) {
if (c >= '0' && c <= '9')
return c - '0';
else if (c >= 'a' && c <= 'f')
return (c - 'a' 10);
else if (c >= 'a' && c <= 'f')
return (c - 'a' 10);
assert(0);
return 0;
}
std::string get_key(std::string res) {
std::string lvstr;
for (int i = 0; i < 16; i) {
int x = hex_char_value(res[i]);
char c = x;
std::cout << c;
lvstr.append(1, c);
}
return lvstr;
}
std::string ecb_encrypt(std::string res, std::string source) {
int outlen = 0;
int i = source.size() / 16;
int tail = source.size() % 16;
if (tail > 0) {
i;
}
unsigned char encdata[16 * i];
evp_cipher_ctx *ctx;
ctx = evp_cipher_ctx_new();
evp_cipherinit_ex(ctx, evp_aes_128_ecb(), null,
reinterpret_cast<const unsigned char *>(get_key(res).c_str()), null, 1);
evp_cipherupdate(ctx, encdata, &outlen, reinterpret_cast<const unsigned char *>(source.c_str()), source.size());
evp_cipherfinal(ctx, encdata outlen, &outlen);
evp_cipher_ctx_free(ctx);
std::string data = aip::base64_encode(reinterpret_cast<const char *>(encdata), sizeof(encdata));
return data;
}
std::string ecb_decrypt(std::string res, std::string decode) {
std::string data = aip::base64_decode(decode);
int declen = 0;
int outlen = 0;
unsigned char decdata[data.size()];
evp_cipher_ctx *ctx2;
ctx2 = evp_cipher_ctx_new();
evp_cipherinit_ex(ctx2, evp_aes_128_ecb(), null, reinterpret_cast<const unsigned char *>(get_key(res).c_str()),
null, 0);
evp_cipherupdate(ctx2, decdata, &outlen, reinterpret_cast<const unsigned char *>(data.c_str()), data.size());
declen = outlen;
evp_cipherfinal(ctx2, decdata outlen, &outlen);
declen = outlen;
evp_cipher_ctx_free(ctx2);
decdata[declen] = '\0';
printf("decrypt: %s\n", decdata);
std::string result;
result = reinterpret_cast<const char *>(decdata);
return result;
}
template<class chart, class traits, class allocator>
std::basic_istream<chart, traits> &getall(std::basic_istream<chart, traits> &input,
std::basic_string<chart, traits, allocator> &str) {
std::ostringstream oss;
oss << input.rdbuf();
str.assign(oss.str());
return input;
}
inline int get_file_content(const char *filename, std::string *out) {
std::ifstream in(filename, std::ios::in | std::ios::binary);
if (in) {
getall(in, *out);
return 0;
} else {
return -1;
}
}
/**
* 身份证识别
* @return 调用成功返回0,发生错误返回其他错误码
*/
json::value idcard(const std::string &access_token) {
json::value obj;
std::string url = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard?access_token=" access_token;
curl *curl = null;
curlcode result_code;
//图片内容
std::string file_content;
get_file_content("/users/lidang/pyproject/baidu/aip/api-python-sdk/test/resources/my.jpg", &file_content);
// std::string base64 = aip::base64_encode(file_content.c_str(), (int) file_content.size());
std::string res = "e1ad10e3d69689e0";
std::string base64 = ecb_encrypt(res, file_content);
int is_success;
std::string response;
std::string error;
curl = curl_easy_init();
if (curl) {
curl_easy_setopt(curl, curlopt_url, url.data());
curl_easy_setopt(curl, curlopt_post, 1);
curl_httppost *post = null;
curl_httppost *last = null;
curl_formadd(&post, &last, curlform_copyname, "id_card_side", curlform_copycontents, "front", curlform_end);
curl_formadd(&post, &last, curlform_copyname, "image", curlform_copycontents, base64.c_str(), curlform_end);
curl_formadd(&post, &last, curlform_copyname, "aesencry", curlform_copycontents, "true", curlform_end);
curl_easy_setopt(curl, curlopt_writedata, &response);
curl_easy_setopt(curl, curlopt_httppost, post);
curl_easy_setopt(curl, curlopt_writefunction, onwritedata);
result_code = curl_easy_perform(curl);
if (result_code != curle_ok) {
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(result_code));
is_success = 1;
return is_success;
}
json::charreaderbuilder crbuilder;
std::unique_ptr<json::charreader> reader(crbuilder.newcharreader());
reader->parse(response.data(), response.data() response.size(), &obj, &error);
curl_easy_cleanup(curl);
is_success = 0;
return obj;
} else {
fprintf(stderr, "curl_easy_init() failed.");
is_success = 1;
}
return obj;
}
int main() {
// aipt::test_ocr();
// aipt::test_kg();
// aipt::test_speech();
// aipt::test_face();
// aipt::test_nlp();
// aipt::test_ocr();
// aipt::test_image_censor();
// aipt::run_test(1);
std::string ak = "ak";
std::string sk = "sk";
std::string res = "控制台的aeskey";
std::string output;
std::string token;
get_token(ak, sk, &token);
json::value result;
result = idcard(token);
std::cout << result["result"];
std::string data = ecb_decrypt(res, result["result"].asstring());
std::cout << data "\n";
// std::string encate = ecb_encrypt(res, "123456789123456789");
// std::cout << encate "\n";
// std::string decode = ecb_decrypt(res,encate);
// std::cout << decode "\n";
return 0;
}
function buildurl($url, $params)
{
if (!empty($params)) {
$str = http_build_query($params);
return $url . (strpos($url, '?') === false ? '?' : '&') . $str;
} else {
return $url;
}
}
function buildheaders($headers)
{
$result = array();
foreach ($headers as $k => $v) {
$result[] = sprintf('%s:%s', $k, $v);
}
return $result;
}
function get($url, $params = array(), $headers = array())
{
$url = buildurl($url, $params);
$headers = array_merge($headers, buildheaders($headers));
$ch = curl_init();
curl_setopt($ch, curlopt_url, $url);
curl_setopt($ch, curlopt_header, false);
curl_setopt($ch, curlopt_returntransfer, true);
curl_setopt($ch, curlopt_ssl_verifypeer, false);
curl_setopt($ch, curlopt_httpheader, $headers);
$content = curl_exec($ch);
$code = curl_getinfo($ch, curlinfo_http_code);
if ($code === 0) {
throw new exception(curl_error($ch));
}
curl_close($ch);
return array(
'code' => $code,
'content' => $content,
);
}
function post($url, $data = array(), $headers = array())
{
$ch = curl_init();
var_dump($url);
curl_setopt($ch, curlopt_url, $url);
curl_setopt($ch, curlopt_post, 1);
curl_setopt($ch, curlopt_header, false);
curl_setopt($ch, curlopt_returntransfer, true);
curl_setopt($ch, curlopt_ssl_verifypeer, false);
curl_setopt($ch, curlopt_httpheader, $headers);
curl_setopt($ch, curlopt_postfields, is_array($data) ? http_build_query($data) : $data);
$content = curl_exec($ch);
$code = curl_getinfo($ch, curlinfo_http_code);
if ($code === 0) {
throw new exception(curl_error($ch));
}
curl_close($ch);
return array(
'code' => $code,
'content' => $content,
);
}
function decrypt($sstr, $key)
{
$sstr = base64_decode($sstr);
$decrypted = openssl_decrypt($sstr, 'aes-128-ecb', get_key($key), openssl_raw_data);
return $decrypted;
}
function encrypt($input, $key)
{
$data = openssl_encrypt($input, 'aes-128-ecb', get_key($key), openssl_raw_data);
$data = base64_encode($data);
return $data;
}
function bytestostr($bytes)
{
$str = '';
foreach ($bytes as $ch) {
$str .= chr($ch);
}
return $str;
}
function get_key($key)
{
$arr = str_split($key);
$bytes = array();
for ($i = 0; $i < count($arr); $i) {
$bytes[] = ord(chr(hexdec($arr[$i])));
}
return bytestostr($bytes);
}
$ak = "ak";
$sk = "sk";
#aes key 从控制台 文字识别-应用列表-应用管理 获取
$aes = 'res';
$response = get('https://aip.baidubce.com/oauth/2.0/token', array(
'grant_type' => 'client_credentials',
'client_id' => $ak,
'client_secret' => $sk,
));
$obj = json_decode($response['content'], true);
$token = $obj['access_token'];
$url = 'https://aip.baidubce.com/rest/2.0/ocr/v1/idcard?access_token=' . $token;
$img = file_get_contents('idcard.jpg');
$img_data = encrypt($img, $aes);
$data = array();
$data['image'] = $img_data;
$data['id_card_side'] = 'front';
$data['aesencry'] = 'true';
$response = post($url, $data, array());
$result =$response['content'];
$book = json_decode($result,true);
$res=decrypt($book["result"],$aes);
echo $res;
//构造请求数据json_decode($ content, true);
using system;
using nunit.framework;
using system.text;
using system.security.cryptography;
using system.io;
using system.net;
using system.collections.generic;
using newtonsoft.json;
using newtonsoft.json.linq;
using system.linq;
namespace baidu.aip
{
[testfixture]
public class demo
{
public static byte[] getfilebyte(string filename)
{
filestream filestream = new filestream(filename, filemode.open);
byte[] arr = new byte[filestream.length];
filestream.read(arr, 0, (int)filestream.length);
filestream.close();
return arr;
}
public static string parsequerystring(dictionary<string, string> querys)
{
if (querys.count == 0)
return "";
return querys
.select(pair => pair.key "=" pair.value)
.aggregate((a, b) => a "&" b);
}
public static string streamtostring(stream ss, encoding enc)
{
string ret;
using (var reader = new streamreader(ss, enc))
{
ret = reader.readtoend();
}
ss.close();
return ret;
}
public static jobject openapifetchtoken(string ak, string sk, bool throws = false, bool debuglog = false)
{
var querys = new dictionary<string, string>
{
{"grant_type", "client_credentials"},
{"client_id", ak},
{"client_secret", sk}
};
var url = string.format("{0}?{1}", "https://aip.baidubce.com/oauth/2.0/token", parsequerystring(querys));
if (debuglog)
console.writeline(url);
var webreq = (httpwebrequest)webrequest.create(url);
try
{
var resp = (httpwebresponse)webreq.getresponse();
if (resp.statuscode == httpstatuscode.ok)
{
var respstr = streamtostring(resp.getresponsestream(), encoding.utf8);
var obj = jsonconvert.deserializeobject(respstr) as jobject;
if (obj["access_token"] != null && obj["expires_in"] != null)
return obj;
if (throws)
throw new aipexception("failed to request token. " (string)obj["error_description"]);
return null;
}
if (throws)
throw new aipexception("failed to request token. " resp.statuscode resp.statusdescription);
}
catch (exception e)
{
if (throws)
throw new aipexception("failed to request token. " e.message);
return null;
}
return null;
}
public static string urlencode(string str)
{
stringbuilder sb = new stringbuilder();
byte[] bystr = system.text.encoding.utf8.getbytes(str); //默认是system.text.encoding.default.getbytes(str)
for (int i = 0; i < bystr.length; i)
{
sb.append(@"%" convert.tostring(bystr[i], 16));
}
return (sb.tostring());
}
public static string encrypt(string toencrypt, string key)
{
byte[] keyarray = getkey(key);
byte[] toencryptarray = utf8encoding.utf8.getbytes(toencrypt);
console.writeline("hello world!" keyarray.length);
rijndaelmanaged rdel = new rijndaelmanaged();
rdel.key = keyarray;
rdel.mode = ciphermode.ecb;
rdel.padding = paddingmode.pkcs7;
icryptotransform ctransform = rdel.createencryptor();
byte[] resultarray = ctransform.transformfinalblock(toencryptarray, 0, toencryptarray.length);
return convert.tobase64string(resultarray, 0, resultarray.length);
}
public static string encrypt(byte[] toencryptarray, string key)
{
byte[] keyarray = getkey(key);
console.writeline("hello world!" keyarray.length);
rijndaelmanaged rdel = new rijndaelmanaged();
rdel.key = keyarray;
rdel.mode = ciphermode.ecb;
rdel.padding = paddingmode.pkcs7;
icryptotransform ctransform = rdel.createencryptor();
byte[] resultarray = ctransform.transformfinalblock(toencryptarray, 0, toencryptarray.length);
return convert.tobase64string(resultarray, 0, resultarray.length);
}
public static byte[] getkey(string key)
{
byte[] result = new byte[key.length];
char[] array = key.toarray();
int i = 0;
for (int a = 0; a < array.length; a = a 1)
{
string ch =array[a]"";
int val=convert.toint32(ch,16);
result[a] = (byte)val;
}
return result;
}
/*
* aes解密
* */
public static string decrypt(string todecrypt, string key)
{
byte[] keyarray = getkey(key);
byte[] toencryptarray = convert.frombase64string(todecrypt);
rijndaelmanaged rdel = new rijndaelmanaged();
rdel.key = keyarray;
rdel.mode = ciphermode.ecb;
rdel.padding = paddingmode.pkcs7;
icryptotransform ctransform = rdel.createdecryptor();
byte[] resultarray = ctransform.transformfinalblock(toencryptarray, 0, toencryptarray.length);
return utf8encoding.utf8.getstring(resultarray);
}
[test]
public void demo()
{
string res = "控制台的aeskey";
string ak = "ak";
string sk = "sk";
string host = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard?access_token=" openapifetchtoken(ak, sk)["access_token"];
//console.writeline("url:" host);
encoding encoding = encoding.default;
httpwebrequest request = (httpwebrequest)webrequest.create(host);
request.method = "post";
request.keepalive = true;
//// 图片的base64编码
byte[] file = getfilebyte("图片路径");
string base64= encrypt(file, res);
string str = "aesencry=true&id_card_side=" "front" "&image=" urlencode(base64);
byte[] buffer = encoding.getbytes(str);
request.contentlength = buffer.length;
request.getrequeststream().write(buffer, 0, buffer.length);
httpwebresponse response = (httpwebresponse)request.getresponse();
streamreader reader = new streamreader(response.getresponsestream(), encoding.default);
string result = reader.readtoend();
console.writeline("身份证识别:");
console.writeline(result);
console.writeline("解密");
var obj = jsonconvert.deserializeobject(result) as jobject;
var content=decrypt((string)obj["result"], res);
console.writeline(content);
}
}
}
返回说明
返回示例
{
"log_id":"2648325511",
"result":"密文"
}
请对result密文进行base64解码后得到byte流,再进行aes解密,得到识别结果的明文。