我首先尝试mail@domain.com
对/
进行编码,但它包含http://example.com/verify/<confirmation_code>
,这会破坏我的网址create or replace
PROCEDURE UPDATION
(
NO_IN IN VARCHAR2
) IS
poject_id defects.reference_id%type;
BEGIN
Select REFERENCE_ID INTO poject_id from DEFECTS where ID=NO_IN;
dbms_output.put_line(project_id);
if poject_id is not null then
dbms_output.put_line('proj not null');
end if;
end;
我不想存储在Db中,我想要在飞行过程中,只要我可以通过我自己的Salt。我该怎么用?
答案 0 :(得分:0)
您可以对用户ID进行编码并将其作为您的确认码发送,您可以从中检查该ID。
答案 1 :(得分:0)
我使用base_64编码图像墨水以发送到调整大小脚本,这是加密中的一个......
aHR0cDovLzEyM3N0b3Jlcy5jb20vbWVkaWEvY2F0YWxvZy9wcm9kdWN0L2svby9rb29sYXRyb25vbmxpbmVfMjIyMV84OTIwMTk2LmpwZw ==
base_64中没有斜杠...你使用base64_encode加密和base64_decode解密吗?