Oracle DBMS_USER_CERTS
Version 26ai

General Information
Library Note Morgan's Library Page Header
The best Oracle News for FY2026

Oracle Database 26ai will be available on generic Linux platforms in January and soon on AIX and Windows
Purpose Utility enabling the addition, deletion and maintenance of certificates in the database.

This package uses subprograms to add and delete X.509 certificates which are used for blockchain table signature verification by the current user.

A typical use case is to attach a digital signature to a row in a blockchain table and be able to verify the digital signature later. A certificate used to sign one or more rows in blockchain tables and which has since expired should remain in the database until all those rows have been deleted from the blockchain tables.
AUTHID CURRENT_USER
Dependencies
DBMS_USER_CERTS_LIB    
Documented Yes
First Available 20c
Security Model Owned by SYS with EXECUTE granted to PUBLIC
Source {ORACLE_HOME}/rdbms/admin/dbmscert.sql
{ORACLE_HOME}/rdbms/admin/prvtcert.plb
Subprograms
 
ADD_CERTIFICATE (parameter renamed in 23ai)
Adds X.509 certificates which are used for signature verification of blockchain tables dbms_user_certs.add_certificate(
x509_cert IN  BLOB,
cert_id   OUT RAW);
TBD
 
ADD_CERTIFICATE_REPL (new 23ai)
Undocumented dbms_user_certs.add_certificate_repl(
x509_cert IN BLOB,
cert_id   IN RAW,
cert_guid IN VARCHAR2,
username  IN VARCHAR2);
TBD
 
ADD_COPY (new 23ai)
Undocumented dbms_user_certs.add_copy(
x509_cert IN BLOB,
cert_id   IN RAW,
username  IN VARCHAR2 DEFAULT NULL);
TBD
 
DROP_CERTIFICATE (parameter renamed in 23ai)
Drops a certificate that is used for signature verification of blockchain tables dbms_user_certs.drop_certificate(cert_id IN RAW);
TBD
 
DROP_CERTIFICATE_REPL (new 23ai)
Undocumented dbms_user_certs.drop_certificate(
cert_id  IN RAW,
username IN VARCHAR2);
TBD

Related Topics
Built-in Functions
Built-in Packages
Database Security
BlockChain Tables
DBMS_BLOCKCHAIN_TABLE
DBMS_BLOCKCHAIN_UTL
DBMS_TABLE_DATA
What's New In 21c
What's New In 26ai

Morgan's Library Page Footer
This site is maintained by Daniel Morgan. Last Updated: This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2026 Daniel A. Morgan All Rights Reserved