DBA Data[Home] [Help]

PACKAGE: APPS.OKS_BASE64

Source


1 PACKAGE oks_base64 AUTHID CURRENT_USER AS
2 /* $Header: OKSBASES.pls 120.0 2005/05/25 17:57:57 appldev noship $ */
3 
4    -- Base64-encode a piece of binary data.
5    --
6    -- Note that this encode function does not split the encoded text into
7    -- multiple lines with no more than 76 bytes each as required by
8    -- the MIME standard.
9    --
10    FUNCTION encode(r IN RAW) RETURN VARCHAR2;
11 
12 END;